photo

nayomi ranamuka


University Of Sri Jayewardenepura

Last seen: mehr als 2 Jahre vor Aktiv seit 2011

Followers: 0   Following: 0

Nachricht

Professional Interests: image processing

Statistik

MATLAB Answers

23 Fragen
3 Antworten

RANG
23.034
of 300.352

REPUTATION
1

BEITRÄGE
23 Fragen
3 Antworten

ANTWORTZUSTIMMUNG
39.13%

ERHALTENE STIMMEN
1

RANG
 of 20.928

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.172

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • First Review
  • Thankful Level 3
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Problem with Matlab GUI ??
I have loaded an image to GUI. Now I've to load the image to next GUI when a button press on previous GUI. Any body can help me?...

etwa 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem on Fuzzy Logic Toolbox Rules
Dear all, I'm using fuzzy logic toolbox for my fuzzy system has 19 inputs. I'm creating rules using addrule function in UI. I'v...

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to get x,y coordinates of each pixels in a connected component ??
Dear all, I = imread('image.jpg'); I2 = im2bw(I) ; st = regionprops( I2, 'PixelIdxList', 'PixelList'); ...

mehr als 14 Jahre vor | 4 Antworten | 0

4

Antworten

Frage


Problem on fuzzy inference calculations ..
Dear all, I've to perform fuzzy inference calculations. input=[input1(:), input2(:)]; out=evalfis(input,a); But this makes f...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to find MeanIntensity of Image ??
Dear all, We can find mean intensity of an image as follows. MeanOf_KthRegion= STATS2(k).MeanIntensity; Now I...

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


how to get thin image components ??
Dear all, We can use imdilate to grow the image borders. As opposite I need to get thin image components than real size i...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


x,y coordinates of edge lines in image ??
Dear all, I've got edge of image as follows. I=imread('edge.png'); I=rgb2gray(I); th...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to find all peaks values in a histogram ??
Dear all, I would like to know how to get all peaks values in a histogram of a gray scale image. Thank you

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Remove non uniform illumination
Dear all, I want to remove non-uniform illumination from image. Any body can help me?

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


fuzzy logic for image processing
Dear all, I want to use fuzzy logic for image processing. But I've following problem. 1) How to transfer the input i...

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Fuzzy Logic Toolbox - ruleview command
You can try this, a=readfis(myfis); evalfis([5 5], a)

mehr als 14 Jahre vor | 0

Frage


Problem in Superimpose components on image ??
Dear all, I've identified some regions of image in a binary image. I want to superimpose those regions on color image. How sh...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to select better threshold value for image ???
Dear all, I've a collection of images with different illumination. When I apply segmentation for images the result depend ...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Simple task on image
Dear all, I've binary image with white border . There is a huge circle with white border and its border touch the border of...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Fuzzy logic for image processing
Dear all I hope to identify some regions in the image using it color space. I want to do this using fuzzy logic with image pr...

mehr als 14 Jahre vor | 4 Antworten | 1

4

Antworten

Frage


Seeded Region Growing Method
Hi, I want to implement Seeded Region Growing Method for Image Segmentation.Please Can you give me any idea regarding thi...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


detecting circular Objects
Hi, I want to know the methods to detecting circular Objects' Shape using image processing. I hope your kind help. Thank you...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Largest connected component(circular)
I need an algorithm to detect the largest connected component which has circular shape in an image. I hope your kind help. Than...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
local variation of image
Thank you. Regarding to your comments I've a solution also. *J = colfilt(I,[5 5],'sliding',@std);* I hope your suggestions for...

mehr als 14 Jahre vor | 0

| akzeptiert

Frage


local variation of image
I want to calculate the local standard variation in a sliding window for an image. How it should be done using matlab ??

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Best method to resize image ??
There are several methods to resize images. I need to know a best method which results high quality image. Thank you

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to find largest connected component ??
Hi friends, I want to find the largest connected component in an image. Is there an algorithm to do this in MATLAB?

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem in image classification
Hi,Im new to the area of image processing. I want to classify an image into different categories(into different classes).How it...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Problem on 'bitand' method
This is my solution. marker=bitand(im2uint8(I1),im2uint8(I2Cmp)); Thanx for your answers.

mehr als 14 Jahre vor | 0

Frage


Problem on 'bitand' method
Hi friends, I have problem on 'bitand' method when create marker image using mask. I2 = im2bw(I1,0.8); %% Thresholding i...

mehr als 14 Jahre vor | 4 Antworten | 0

4

Antworten

Frage


Median Filter
Hi, I want to apply median filtering for HSI image. How would I apply it?

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten