이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
I don't know which type of image is?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have few foot ulcer images in that I can't detect the ROI.And the output of entropy and variance is also zero.So can anyone tell me which type of image it is?
채택된 답변
Image Analyst
2016년 6월 26일
Without seeing the image (which people usually do when asking for image processing advice), I'd say that if the variance is zero, you have a completely uniform image.
댓글 수: 19
riddhi desai
2016년 6월 27일
because i have to find the variance of ROI and my ROI image is black (not able to gert ROI). So variance is zero so tell me the type of this image please m not able to find out.
riddhi desai
2016년 6월 27일
but the wrong roi i don't get the ROI in that image i only gate black image
Walter Roberson
2016년 6월 27일
Is the all-black ROI the right ROI? I don't think so.
At the very least you should do skin detection; see http://www.mathworks.com/matlabcentral/answers/49435-i-am-basically-trying-to-find-the-skin-in-the-image-so-i-wrote-the-piece-of-code-i-converted-the-im#answer_60411
I have no idea how you hope to get any useful ulcer information out of an image that is only 56 by 132 pixels and has been heavily compressed with lossy JPEG.
riddhi desai
2016년 6월 27일
편집: riddhi desai
2016년 6월 27일
I dont get ROI sir. And i know its wrong ROI Sir but it have some specific name or what?
Walter Roberson
2016년 6월 27일
It has the specific name of "an image which the wrong ROI has been used for". We could name those after you if you need a shorter name. They are "Riddhi Images".
Image Analyst
2016년 6월 27일
Show the code that you are using to define an ROI from that image. Otherwise there's no way I can tell why you're finding all black.
Image Analyst
2016년 6월 27일
Ridding, did you read my question? We need the code - the actual lines of code.
riddhi desai
2016년 6월 27일
편집: Walter Roberson
2016년 6월 27일
fs1=im2bw(fs);
figure,imshow(fs1);title('Binarized Image');
se2=strel('disk',3);
fs2=imclose(fs1,se2);title('Filling of Small Holes');
figure,imshow(fs2);
se1=strel('disk',5);title('Removal of small regions');
fs3=imopen(fs2,se1);
%figure,imshow(fs3);title('Final Processed Image');
for i=1:size(fs,1)
for j=1:size(fs,2)
if(fs3(i,j)==1)
fs4(i,j)=fs(i,j);
fk1(i,j)=fh(i,j);
fk2(i,j)=fv(i,j);
else
fs4(i,j)=0;
fk1(i,j)=0;
fk2(i,j)=0;
end
end
end
figure,imshow(fs4);title('Extracted Region');
Labelling and Connected Component Analysis %%%%%
[B,L]=bwboundaries(fs3,'noholes');
hold on
for k = 1:length(B)
boundary = B{k};
plot(boundary(:,2), boundary(:,1), 'y', 'LineWidth', 4)
end
fk3=cat(3,fk1,fs4,fk2);
fk4=hsv2rgb(fk3);
figure,imshow(fk4);title('Extracted Region as in Original Color Image');
Walter Roberson
2016년 6월 27일
Your question is like asking what the technical name is for the kind of floor that didn't get swept because you brought the wrong size of broom. Hereafter they will be known as "Riddhi floors", and the adjective "Riddhi" shall apply to anything upon which work did not get done because the wrong tool for the job was brought.
Image Analyst
2016년 6월 27일
The problem is this line:
fs1=im2bw(fs);
That is far, far from an acceptable method to do segmentation on that type of image. You'll have to come up with a better method.
riddhi desai
2016년 6월 28일
sir i already apply this code on segmented image.so ,and else i also have other question too can u help me in that also?
riddhi desai
2016년 6월 30일
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
아시아 태평양
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)