Tagged Questions

PGM is a grayscale image format used by the Netpbm library and other graphics software.

learn more… | top users | synonyms

4
votes
1answer
235 views

Python and 16-bit PGM

I have 16-bit PGM images that I am trying to read in Python. It seems (?) like PIL does not support this format? import Image im = Image.open('test.pgm') im.show() Shows roughly the image, but it ...
3
votes
5answers
261 views

Numpy and 16-bit PGM

What is an efficient and clear way to read 16-bit PGM images in Python with numpy? I cannot use PIL to load 16-bit PGM images due to a PIL bug. I can read in the header with the following code: dt = ...
3
votes
2answers
216 views

Quickest way to extract the bits of the colors in a .pgm image?

I've got a hundred 128 x 128 .pgm files with some shapes on them and I think their color scale is 255 (not sure on this one though, so it'd be nice if a solution could also take that in consideration) ...
2
votes
1answer
111 views

How to read in data from a pgm file in C++

So far I can read every line and print it out to the console: void readFile(){ string line; ifstream myfile("example1.pgm"); if (myfile.is_open()){ while (myfile.good()){ ...
2
votes
2answers
77 views

Help on adding plug-in to Java ImageWriter

I am trying to save a BufferedImage as a PNM file. I already installed the JAI (Java Advanced Imaging), and have the PNMWriter plug-in imported. However, I don't know how to add it to my ImageWriter ...
2
votes
0answers
132 views

Windows PGM socket access error with non-admin account

I'm trying to use PGM sockets to send data on Windows. I can listen and receive data fine from a PGM socket using a non-admin account, but when I try to create a socket to send data I get an exception ...
2
votes
2answers
407 views

Deliver multicast to several different geo-locations

I need to use one logical PGM based multicast address in application while enable such application "seamlessly" running across several different geo-locations (i.e. think US/Europe/Australia). ...
1
vote
0answers
87 views

How to load a PGM image with correct color range in Java?

I'm doing a work in which I have to load a PGM image in Java programming language. I have no problems in loading it from a file, since I'm using Apache Sanselan framework and it's too easy to do: ...
1
vote
2answers
568 views

How to read a .pgm image file in a 2D double array in C

The question is quite simple: How to read a .pgm image file into a 2D double array in C. I do not have a .pgm buffer in memory. I would like to read it from the disk into memory. Would really ...
1
vote
1answer
1k views

Segmentation faults occur when I run a parallel program with Open MPI

on my previous post I needed to distribute data of pgm files among 10 computers. With help from Jonathan Dursi and Shawn Chin, I have integrate the code. I can compile my program but it got ...
1
vote
2answers
660 views

Open MPI to distributed and manipulate 2d array in PGM files

I need to use Open MPI to distribute 2d-array in the PGM file among 10 working computers. Then I need to manipulate each value of the array to get a negative image (255-i) and then print the output ...
1
vote
2answers
913 views

Pragmatic General Multicast on Winsock

Has anyone any experience of using PGM at the winsock (not MSMQ) level on Windows? It looks like a useful reliable multicast protocol (a la TIBCO Rendezvous) and I assume that it would be possible to ...
1
vote
2answers
425 views

Receiving MessageQueue msgs without reading them from the receiving Queue?

I am using the System.Messaging.MessageQueue to send and receive multicast System.Messaging.Message’s on my LAN – this works fine. However, I have a requirement to receive the msgs without using a ...
0
votes
3answers
389 views

Displaying histogram pixel values from PGM image (p5) using Pure C without any image processing library

This question is challenging to get more understanding on Image Processing using pure C. I have done a simple program reading non-binary PGM file using C compiled with GCC. Now, it is becoming a ...
0
votes
1answer
60 views

Modulization Gone Awry

So I had one large function that worked. Then I decided to modify it and now I am just printing out a black square. I am attaching my code to see if any one would understand what is happening. These ...
0
votes
1answer
85 views

Cropping a PGM in C

I am trying to teach myself digital image process. I have read my pgm into a struct. In this struct I have pixel array. I can print it just fine. Now I want to crop this photo based on a user input. I ...
0
votes
1answer
156 views

How do i run a sample androoid ndk program in eclipse?

I have created a sample android NDK program in eclipse. I'm working with Windows XP, I know that there are some issues regarding NDK in eclipse,but i installed the cygwin tool for this.. Is this ...
0
votes
1answer
248 views

Convert pgm image to bmp

how do I load pgm image in C# and how Im convert it to pgm file?
0
votes
1answer
218 views

Problem to integrate sequential code to parallel code MPI

i tried to integrate an edge-detection laplacian operator into my previous code of MPI. The problem i have now is to do the edge detection in 1d array after the data is scatter. I got the output but ...
0
votes
1answer
542 views

Java Image Processing using PGM files and Multi-Dimensional arrays

I'm in a intro CS class. We've been given a project where we've been supplied a basic file, and a few .PGM files of our school's mascot and things like that. Basically we're told that we need to use ...
0
votes
1answer
153 views

ansi-c. High-Pass3 filter for .pgm pictures

I'm wandering through the web and none of tutorials I've read I don't really understand. How do I implementation of High-pass3 filter for .pgm pictures? I've struct of Image: struct Image { char* ...
0
votes
1answer
2k views

How to read PGM images in Java?

I feel like I'm missing something simple here (as usual). I'm trying to read PGM images using Java. Matlab does it just fine - outputting the image pixels (for example, a small 32x32 image) in Matlab ...
0
votes
2answers
666 views

How do I capture images in OpenCV and saving in pgm format?

I am brand new to programming in general, and am working on a project for which I need to capture images from my webcam (possibly using OpenCV), and save the images as pgm files. What's the simplest ...
0
votes
1answer
154 views

Creating a video file from a group of PGM files in python

My python program generates a collection of binary files. I create pgm (portable bitmap files) using this binary data. I would like to create a video using each of the pgm files as a frame in my ...
0
votes
2answers
883 views

java pgm 2 jpeg/png

I have an int array containing gray scale values from 0-254, i also have the x and y size of the image. It is an easy thing to create an pgm image, but i want to display it in a jsp, so i need somehow ...
-1
votes
3answers
174 views

Read and Write PGM (P5) Image File in PHP [closed]

In PHP, a simple read and write file can be done by using fread() and fwrite(). The unpack() and pack() operator are used to extract binary information. The question is, how can I read and write PGM ...