필터 지우기
필터 지우기

Detect Edges having length greater than 50km

조회 수: 1 (최근 30일)
Nadia jabeen
Nadia jabeen 2020년 10월 19일
댓글: Nadia jabeen 2020년 10월 20일
Hi all,
I have detected edges using Canny Edge detector. But I want to detect Edges having length greater than 50km. I have attached code. Can anyone help me to edit code to detect edges of given length?
X = cell2mat(struct2cell(load('F:\study\practise\New folder\2010\script\preprocessed2010.mat', 'Alpha')));
for k=1:length(X)
b=X(k).img;
b(b==0)=NaN;
b (b > -5) = NaN;
b (b < -32) = NaN;
figure, temp1 = imagesc(b);title('Original Image') ;colormap('gray'); colorbar;
baseFileName = sprintf('%d.jpg',k);
% % % Specify some particular, specific folder:
fullFileName = fullfile('E:\practise\images', baseFileName);
figure(gcf); % Activate the figure again.
export_fig(fullFileName);
% Get edges
A = edge(b, 'canny');
figure, temp1 = imagesc(A);title('Edge Detected Image') ;colormap('gray'); colorbar;
baseFileName = sprintf('%dCanny.jpg',k);
fullFileName = fullfile('E:\practise\images', baseFileName);
figure(gcf); % Activate the figure again.
export_fig(fullFileName);
%
end

채택된 답변

Image Analyst
Image Analyst 2020년 10월 19일
You forgot to attach preprocessed2010.mat.
After you get the binary image, A, you can call bwareaopen() to extract only those blobs with area more than however many pixels 50 km is;
fiftyKm = round(50 * pixelsPerKm);
A50 = bwareaopen(A, fiftyKm);
  댓글 수: 2
Nadia jabeen
Nadia jabeen 2020년 10월 20일
Pixel area is 30*30m. I want to extract edges having length more than 50km.
Nadia jabeen
Nadia jabeen 2020년 10월 20일
I don't want to extract pixels. All edges have been extracted from bwareaopen() function.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by