photo

Shantanu Jana


Jadavpur University

自 2015 起处于活动状态

Followers: 0   Following: 0

消息

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

统计学

  • Revival Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


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

9 years 前 | 0 个回答 | 1

0

个回答

已回答
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...

9 years 前 | 0

已回答
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) ...

9 years 前 | 0

已回答
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 >>

9 years 前 | 0

已回答
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...

9 years 前 | 0