Community Profile

photo

Nitin


Active since 2011

Statistics

  • 首次审查
  • 3 Month Streak
  • 感恩3级
  • 知识渊博的级别4
  • First Answer

查看徽章

Content Feed

查看

Answered
索引对数组的减法部分
Suppose you have 20 elements: Reshape to 4 rows and 5 columns X = reshape(1:20,5,4)'; % Substract rows Y = bsxfun(@m...

mehr als 7 Jahre ago | 0

Answered
how to separate objects in binary image?
您应该检查regionprops和

mehr als 7 Jahre ago | 0

Answered
Problem with vision.VideoFileReader
尝试使用MATLAB中的shaky_car视频运行此代码,看看它是否有效:videofreader = vision.videofilereader(...

fast 8 Jahre ago | 1

Answered
manipulating cells in array.
% One of the many solutions t = ismember(A,'0') A(t)=[];

fast 8 Jahre ago | 0

|公认

Answered
second derivative of an image
There is a nice explanation on image derivative . Please ...

etwa 8 Jahre ago | 0

Answered
how can i differentiate between images
%测试图像IMG =零(20,20);IMG(5:15,5:15)= 1;%查找图像温度= ...中是否存在“ 255”强度像素

etwa 8 Jahre ago | 0

Answered
how to get black & white pixels count from grayscale image...???
black corresponds to zeros in your image and white corresponds to ones if your image is double format. I_double = im2double...

etwa 8 Jahre ago | 0

Answered
how to calculate the diameter of a vessel
I would start by first experimenting with function in...

etwa 8 Jahre ago | 1

Answered
string
If you are accessing a cell array, you should use curly braces. Check out the examples

etwa 8 Jahre ago | 0

Answered
how to avoid index out of bounds error
I tried running your programme using the Matlab built-in image, blobs.png and received the following error: *Attempted to ac...

etwa 8 Jahre ago | 0

Answered
making of a gui
我建议您在这里学习制作gui

etwa 8 Jahre ago | 0

Answered
Increasing filter size of edge detector
There is a nice on stackoverflow which mig...

etwa 8 Jahre ago | 0

Answered
crack matlab可执行文件?
看看

etwa 8 Jahre ago | 0

Answered
convert inf value to integer value
下载PowerMod函数

etwa 8 Jahre ago | 0

Answered
Create an Array with a Counter?
Why not use an array and save the elapsed time using tic and toc? There is a nice example

etwa 8 Jahre ago | 0

Answered
How can I find pixel coordinates of a perimeter in a binary image?
假设您的图像是二进制图:[a,b] = find(i == 1);%获得坐标

etwa 8 Jahre ago | 0

|公认

Answered
嗨,我想知道DT如何从二进制图像中获取0和1?
I = imread('img.bmp'); I_bin = im2bw(I); % find the '0's in the image: a = find(I_bin==0); % find the '1's in the imag...

etwa 8 Jahre ago | 0

|公认

Answered
Iris Recognition Project.
Please check out libour masek iris code, both the thesis and the matlab code can be found

etwa 8 Jahre ago | 0

|公认

Answered
Given x and y coordinates of any point in an image, how to know if it is black or white
按照强度值,您到了。例如,如果您的图像是双重的:i = im2double(imread('img.bmp'));...

etwa 8 Jahre ago | 0

Answered
视频中的运动检测
您可以使用

etwa 8 Jahre ago | 0

Answered
how to find mean absolute difference between two blocks of different images???
您可以找到以上

etwa 8 Jahre ago | 0

Answered
Skeletonisation of an image
should get you started

etwa 8 Jahre ago | 0

Answered
Multiple loop doesn´t work with right values
在保存之前,您可能需要先初始化单元格。a =单元格(1,num);

etwa 8 Jahre ago | 0

Answered
display mean and max of images....
mean_img = mean(Img(:)); max_img = max(Img(:));

etwa 8 Jahre ago | 1

|公认

Answered
如何检测图像的角度
You might need a reference image / coordinates for the correct position and compare the difference between the two of them

etwa 8 Jahre ago | 1

Answered
如何计算两个操作之间的延迟?
TIC和TOC会做吗?

etwa 8 Jahre ago | 0

Answered
加载和保存视频
您可以在这里找到很多信息和示例

etwa 8 Jahre ago | 0

Answered
tile-based image registration
You might find it useful to estimate the srt transformation using surf. Have a look at the examples on this

etwa 8 Jahre ago | 0

Answered
find the pupil location of eye by dividing it into 8x8 region
The pupil region has a lower intensity than the rest of the image except for eyelashes. I would suggest you use an appropria...

etwa 8 Jahre ago | 0

Load more