> > How to process images in sagemath? I did upload image through Data menu > in notebook and when I evaluate it by writing "DATA+'first.png' " I got this > > '/home/sageadm/nbfiles.sagenb/home/avikashyap620/1/data/first.png'. > > > After that I didn't understand how to display images. >
DATA+first.png is just a Python string. It will not automatically display the image. You should be able to use any Python image processing capability. You can also show them in the notebook using the mini-word processor TinyMCE (see http://ask.sagemath.org/question/8968/display-a-png-image-file-in-a-worksheet/) but for using commands to do so you'll need a little more. http://scipy-lectures.github.io/advanced/image_processing/ is one possible place to look. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
