필터 지우기
필터 지우기

find the third point

조회 수: 1 (최근 30일)
Sajid Rahim
Sajid Rahim 2017년 9월 7일
답변: Image Analyst 2017년 9월 7일
this is my code
%%%%%%%%%%%%%%%%%%%%%%%%%
clear all;
[filename pathname]=uigetfile('*.jpg;*.png;*.tif;*.tiff;*.gif;*.bmp;');
inputimage=imread([pathname filename]);
I=inputimage;
I = rgb2gray(I) ;
[y,x] = find(I) ;
figure
imshow(I)
hold on
plot(x,y,'.b')
plot(x(1),y(1),'*y')
plot(x(end),y(end),'*r')
line([x(1),0],[y(1), 0])
line([x(end),0],[y(end), 0])
figure(1);line([0 1],[0 1]);
%%%%%%%%%%%%%%%%%%%%%%
i wana to find the mid point between the yellow point and red point.... the mid poit is that point where the curve become bended........... as shown the point by arrow...
orignal image
ofter code

채택된 답변

Image Analyst
Image Analyst 2017년 9월 7일
Try findchangepts().

추가 답변 (1개)

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by