| Author |
Message |
sapoti
Joined: 15 May 2008 Posts: 2
|
23 Jun 2008 23:06 help DIP |
|
|
|
hi
i am new at matlab and i have 1024*1024 image and i want to change it's resolution to 512*512 using matlab how can i do that ?
thanx
|
|
| Back to top |
|
 |
ztanish
Joined: 23 Jan 2007 Posts: 42 Helped: 3
|
24 Jun 2008 12:47 Re: help DIP |
|
|
|
you can use resize command
or you can use irfanview or Image J pakage to change it size
search it in google
|
|
| Back to top |
|
 |
sepehr82
Joined: 25 Mar 2007 Posts: 1
|
27 Jun 2008 7:17 Re: help DIP |
|
|
|
| u can write a few simple command in matlab and omit even rows and columns.
|
|
| Back to top |
|
 |
auto_mitch
Joined: 14 Oct 2004 Posts: 205 Helped: 20
|
27 Jun 2008 19:02 Re: help DIP |
|
|
|
You can use the matlab function imresize.
e.g. B = imresize(A, [512 512]);
where A is your initial image with size (1024*1024).
|
|
| Back to top |
|
 |