답변 있음 find guite the same elements
let say you have 2 vector A ,B (like your columns there)
you can do something like :
[C, ia] = unique(A);
for k = 1:length(ia...
13년 초과 전 | 0
답변 있음 Cut an area in the image
you can choose top left and bottom left boundaries using
range=ginput(2);
and then
image=image(range(1,2):range(2,2),range(1...
13년 초과 전 | 0
답변 있음 Clustering
try imopen with strel('line',rho,theta)
close lines after edge detection
Hi all,
After edge detection and adding some circular object, I like to close the lines and fill each area.
this is an example...
13년 초과 전 | 답변 수: 2 | 1
2
답변
질문
imwrite to full (screen) size
Hi all, Im using imwrite to save images to disk and then later on imread, im2frame and movie2avi to create an avi movie file.
...
거의 14년 전 | 답변 수: 1 | 0
1
답변
질문
OUT OF MEMORY
Hi all,
I want to work on an image, but without reducing the resolution by much (for now I use imresize ()).without using it I...
거의 14년 전 | 답변 수: 1 | 0
1
답변
답변 있음 Time difference between images.
Figured it out .. datenum (or the Serial Date Number) gives the fractional number of days from a specific date and time. so I ca...
거의 14년 전 | 0
| 수락됨
질문
Time difference between images.
Hi all,
is there an easy way to get the difference in the time an image was taken between 2 jpg files?
and what datenum number...
거의 14년 전 | 답변 수: 2 | 0
2
답변
답변 있음 finding rotation of angle
you can use imrotate() running over angles and subtract the result with the original image until you get a zero matrix.