Community Profile

photo

harjeet singh


Billtech Labs

2013년부터 활동

Followers: 0   Following: 0

연락

researcher in robotics image processing neural networks fuzzy WSN speech processing Professional Interests: embedded

Programming Languages:
MATLAB
Spoken Languages:
English

통계

All
  • Knowledgeable Level 3
  • Explorer
  • Personal Best Downloads Level 1
  • First Submission
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

제출됨


Marking Line Using Manual Points On RGB image
this code can be use to mark a line using mouse by clicking over any RGB image

4년 초과 전 | 다운로드 수: 1 |

Thumbnail

제출됨


GENERATE COLOR GRADIENT FOR AN IMAGE
this codes demonstrates how we can generate an image having linear color gradient, it uses two color to generates color gradient...

거의 5년 전 | 다운로드 수: 1 |

Thumbnail

질문


taking fft for singal having different angles in degree
hello everyone I am not very much expert in taking FFT analysis, i have a signal which have 3 different angles (30,45,75) i wan...

7년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
Read Sequence text files in Matlab
try to use this code, do read file with fopen using file_path in the loop folder_name='ABC'; files=dir(folder_name); ...

8년 초과 전 | 0

| 수락됨

답변 있음
how to resize for images
use this command img=imresize(I,[480 640]);

8년 초과 전 | 1

답변 있음
How to receive rgb values for each frame of the video?
try this code video=VideoReader('video.mov'); vidHeight=video.Height; vidWidth=video.Width; k=1; while hasFra...

8년 초과 전 | 1

| 수락됨

답변 있음
MATLAB Image processing filtering
try to use this code for these type of image, but not for every slice <</matlabcentral/answers/uploaded_files/43497/Capture.P...

8년 초과 전 | 1

답변 있음
how to find distance between two points in an image
try to use this <</matlabcentral/answers/uploaded_files/43496/Capture.PNG>> img=imread('i2.png'); figure(1) im...

8년 초과 전 | 4

| 수락됨

답변 있음
How to link markers with lines in for loop
try to use this code <</matlabcentral/answers/uploaded_files/43404/Capture.PNG>> clear all close all clc X...

8년 초과 전 | 0

| 수락됨

답변 있음
how to segment/crop words from a line in an image in matlab?
use this code <</matlabcentral/answers/uploaded_files/43289/Capture.PNG>> clear all close all clc img=imrea...

8년 초과 전 | 1

| 수락됨

답변 있음
How to assign zero value to plotted lines
hello dear use this code <</matlabcentral/answers/uploaded_files/42951/Capture.PNG>> clear all close all cl...

8년 초과 전 | 0

답변 있음
how to extract pixels value of extremity of image
try to use this code clear all close all clc img=imread('images.jpg'); figure(1) imshow(img) drawnow ...

8년 초과 전 | 0

답변 있음
How to display rgb image from a matrix as well as insert rectangular shape in the same image.
try this a(1:1065,1:1030,1:3)=255; a=uint8(a); roi=[835 504]; box=[20 10]; figure imshow(a) hold on ...

8년 초과 전 | 2

| 수락됨

답변 있음
Apply 10 point Average filter using pout.tif
hello ahmad please refer this <http://in.mathworks.com/matlabcentral/answers/114442-how-to-design-a-moving-average-filter>

8년 초과 전 | 0

답변 있음
Cell Array min excluding zero
you may try this r=0; c=0; min_num=inf; for i=1:size(cost,1) for j=1:size(cost,2) a=cost{i,j}; ...

8년 초과 전 | 0

답변 있음
how can i find pixels of image's border
you may use this code do set the th val according to the boarder noise <</matlabcentral/answers/uploaded_files/42447/Capture...

8년 초과 전 | 0

| 수락됨

답변 있음
signal intensity value in MRI dicom file
hello Ranga use this to exract signal intensity X = uint8(dicomread('IM-0001-0001')); figure(1) imshow(X) pi...

8년 초과 전 | 0

| 수락됨

답변 있음
I have a image of two circles which are partially occulded. I have to label them as two different label. is there any way to label them differently? I am adding some more images. Images have some regular & non-regular shapes.
hello poonam do use this code <</matlabcentral/answers/uploaded_files/42440/pic_1.PNG>> <</matlabcentral/answers/uploaded...

8년 초과 전 | 1

답변 있음
how do i divide an image into odd and even images such that they are correlated and follow normal distribution?
hello preeti if you are taking whole image and dividing that into even and off pixels, the values in even and odd pixels never ...

8년 초과 전 | 0

답변 있음
How to search for a previous element that is equal in prior loop iteration
hello tim try this code a=[1 1 3; 1 2 2; 1 3 3; 2 1 1; 2 2 3; 2 3 2; 2 4 4]; for i=1:size(a,1...

8년 초과 전 | 1

| 수락됨

답변 있음
how to change the color of one pixel in a binary image ?
hello fariba you may use this code <</matlabcentral/answers/uploaded_files/42414/cap_6.PNG>> clear all close all ...

8년 초과 전 | 0

답변 있음
Create a black line in imagesc plot
hello Eric you may use this code a=500; img(1:a,1:a)=5; figure(1) imagesc(img); hold on b=1:a; plot(...

8년 초과 전 | 0

답변 있음
Removing rows with identical column value
hello miguel use this code clear all close all clc a = [2,7; 3,4; 3,7]; b=[]; for i=1:size(a,1) ...

8년 초과 전 | 1

| 수락됨

답변 있음
Random black and white pixels forming clusters, input proportion of white
hello lucy do use this code <</matlabcentral/answers/uploaded_files/42413/pic_6.PNG>> clear all close all warning...

8년 초과 전 | 1

답변 있음
How can I Segment this image efficiently
hello dear use this code for extraction <</matlabcentral/answers/uploaded_files/42260/Capture.PNG>> clear all cl...

8년 초과 전 | 0

답변 있음
how to remove repetition in matrix without changing length
use this code for n = 1:6 l((n-1)*6+1:n*6,1)=n; l((n-1)*6+1:n*6,2)=[1:6]; end c=1:36; B=c(randp...

8년 초과 전 | 0

답변 있음
How to find the size of the handwritten word in an image?
may be this code will help you <</matlabcentral/answers/uploaded_files/42221/Capture.PNG>> clear all close all war...

8년 초과 전 | 1

답변 있음
resolution issues in importing TIFF image
why not to use after re sizing with ratio matlabImage = imread('B03.tif'); [m n x]=size(matlabImage); ratio=70; ...

8년 초과 전 | 0

답변 있음
How to read only Axial view of lung CT DICOM image in matlab?
dear zubda do use this code clear all close all clc a=imread('ct.png'); figure(1) imshow(a) b=~(...

8년 초과 전 | 0

| 수락됨

답변 있음
how to save image of the result imfindcircle
dear raja, most probable you are using viscircles to highlighter the circles, this commands uses superimposing of graph over the...

8년 초과 전 | 1

| 수락됨

더 보기