load('WM811K.mat'); %% Select training and test data trainTestLabel={data.trainTestLabel}; trainIdx=find(strcmp(trainTestLabel,...
Read More
Home / matlab
Showing posts with label matlab. Show all posts
Showing posts with label matlab. Show all posts
How To Develop Image Recognition Software in Matlab Appdesigner
Download Code : https://github.com/shawon100/Image-Classification-By-ResNet50
Read More
How To Run Two Functions Simultaneously (Parallel Processing) in MatLab
parfor i = 1:2 if i == 1 func1(); else func2(); end end function func1() %disp('Function 1'); ...
Read More
Screen Detection (Dark Room) Code in Matlab
Code and Dataset : https://github.com/shawon100/Screen-Detection Preview Matlab Code :
Read More
How to Implement Two Way Named Pipe Server (Matlab) and Client (C++)
Two Way Named Pipe Server (Matlab) and Client (C++) Code : https://github.com/shawon100/Named-Pipe-Server-and-Client
Read More
Contrast Stretching of an image
x=input( 'Enter factor value=' ); a=imread( 'cameraman.tif' ); [m,n]=size(a); for i=1:m for j=1:n...
Read More
Log transform of an image
A=input( 'Enter the value of constant A=' ); a=imread( 'cameraman.tif' ); [m,n]=size(a); b=im2double(a); ...
Read More
[Image Processing] Create A Negative Image From A Grayscale Image
imc=imread( 'cameraman.tif' ); [m,n]=size(imc); for i=1:m for j=1:n s(i,j)=256...
Read More
Subscribe to:
Posts
(
Atom
)