photo

Shantanu Jana


Jadavpur University

Actif depuis 2015

Followers: 0   Following: 0

Message

Shantanu Jana-received his B.Tech degree in Computer Science and Engineering from MCKVIE in 2007.He received his M.Tech degree from Jadavpur University in 2011. His areas of current research interest are OCR of handwritten text, Bengali fonts, biometrics and image processing,Neural Networks

Statistiques

  • Revival Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

Question


How can I change the Horizontal Resolution and Vertical Resolution of image?
filename='b.bmp'; info = imfinfo(filename); info if (info.HorzResolution>0&&info.VertResolution>0) xres = info....

environ 9 ans il y a | 1 réponse | 1

0

réponse

Réponse apportée
can anyone guide me through an object recognition mechanism or code that recursively plots the contour of object and extract transformation invariant features so that an ANN classifier distinguishes the object through slight different projections?
Use connected component method to find the contour then crops the object assign particular class name to them and extract featur...

plus de 9 ans il y a | 0

Réponse apportée
how to link a word or group of words to a " *.jpg" picture.
Specify descriptive text to associate with image acquisition object acn solve your problem. check this link it describe how to...

plus de 9 ans il y a | 0

Réponse apportée
convert a numbere from integer to double
you can do this process and latter use 'ans' as variable that hold your answer >> a=1 a = 1 >>a = double(a) ...

plus de 9 ans il y a | 0

Réponse apportée
How to round decimal number to 5 places?
you can do like this >> a=1.12345678 a = 1.123456780000000 >> sprintf('%0.5f', a) ans = 1.12346 >>

plus de 9 ans il y a | 0

Réponse apportée
How to multiply the second column of an array by a specified integer?
%this will multiply second column by number and store it in third column and store the mean in fourth %column A = xlsrea...

plus de 9 ans il y a | 0