photo

Shantanu Jana


Jadavpur University

Con actividad desde 2015

Followers: 0   Following: 0

Mensaje

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

Estadística

  • Revival Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


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....

alrededor de 9 años hace | 0 respuestas | 1

0

respuestas

Respondida
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...

más de 9 años hace | 0

Respondida
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...

más de 9 años hace | 0

Respondida
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) ...

más de 9 años hace | 0

Respondida
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 >>

más de 9 años hace | 0

Respondida
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...

más de 9 años hace | 0