help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: using octave for rubber stamp image reconstruction


From: Pantxo
Subject: Re: using octave for rubber stamp image reconstruction
Date: Sat, 4 Feb 2017 06:41:06 -0800 (PST)

address@hidden wrote
> Hello,
> I have old rubber stamp 2D images I would like to reconstruct in order to
> re-create the original rubber stamp using a 3D printer.
> 
> The problem is that the image quality is not good enough Can anyone
> suggest a script for the image reconstruction? 
> 
> 
<http://octave.1599824.n4.nabble.com/file/n4681751/11.gif> 
> 
> <BR>
> You can use CTRL[-] and CTRL[+] to resize and view the image
> <BR>
> DT

Maybe you can try imclose/imopen (image processing package [1]) in different
regions of the image. 
Something like:

im = imread (...);
se = strel ("disk", 10);
im2 = imopen (im, se);
imshow (im2)

Pantxo

 



--
View this message in context: 
http://octave.1599824.n4.nabble.com/using-octave-for-rubber-stamp-image-reconstruction-tp4681751p4681754.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]