The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
37 views

Why my pixel value of DICOM is beyond 'Largest Image Pixel Value' attribute?

I'm using dcmtk to fetch image data from dicom data. Now I have following information for a sample image: (0028,0002) Samples per Pixel: 1 (0028,0004) Photometric Interpretation: MONOCHROME2 ...
0
votes
1answer
33 views

What is the difference between a DICOM viewer vs a PACS system or RIS

I have installed OsiriX is my computer which is an open source DICOM viewer. I was wondering what would make this different from a PACS (Picture archiving and communication system) or RIS (Radiology ...
2
votes
2answers
78 views

HSV color removal/dropout of form fields

I'm writing a system to dropout certain field borders from a form image. The fields may have writing in them which I need to correctly keep even if the handwriting crosses the field border. I have 2 ...
1
vote
0answers
45 views

AForge Imaging finding Rectagles in Image

I'm able to find the rectangles if the image is created in paint.. I'm not able to find the rectangles in Sanp shot or Screen Shot taken It's not recognizing Rectangle in Snapshot imagees... Pls ...
1
vote
0answers
36 views

iOS Document Imaging APIs

The number of iOS applications that scan, crop, edge detect, and OCR documents has proliferated. Also I am aware of the number of programming APIs that have these features for desktop applications, ...
-2
votes
0answers
66 views

Does anyone know of facial recognition libraries written in c# for Windows 8 “.NetCore” platform apps? [closed]

Does anyone know of facial recognition libraries written in c# for Windows 8 ".NetCore" platform? All the libraries I find online (e.g. EMGU, OpenCV) is written in .Net Framework, which unfortunately ...
0
votes
2answers
67 views

Canvas to Save Image and Email

We have a custom product designing tool at "http://dev.ejuicysolutions.com/custom_shirt_designer/". When user will be finished with formatting with text etc... they will click on print button, where ...
-1
votes
1answer
47 views

Cell Counting: Selective; Only count cells positive for all stainings

If I take multiple images in different fluorescent channels (after staining the cells with some antibody/maker), how can I automatically quantitate the fraction of cells positive for each marker? Has ...
0
votes
0answers
9 views

Creating a system deployment disk

Hi guys i want to create an image of a windows 7 system and use it as a deployment tool and when I want to setup up like more than 10 laptops, then i just connect them on a network and deploy the ...
1
vote
3answers
211 views

Detect black circles(not just pixels) in a image using JUI

I have a image with blackened circles. The image is a scanned copy of an survey sheet pretty much like an OMR questionnaire sheet. I want to detect the circles that have been blackened using the ...
0
votes
0answers
45 views

C# Full Memory Image

I am interested in coding a program that could image the whole contents of the physical ram to a file (either .raw/.bin format) of a x86 (and possible x64) of a Windows 2000/XP/Vista/7 Machine I just ...
0
votes
0answers
56 views

Phase Congruency C#

Is there any available code, or even pseudocode, that would allow me to implement the Phase Congruency edge / corner detection algorithm in C#? I am far from a math expert when it comes to the ...
0
votes
0answers
53 views

Exporting a WriteableBitmap as an image file to server

I need to export a WriteableBitmap that I get after cropping an image. I am not getting how to do that, I am using the following: try { byte[] byteStream; ...
1
vote
0answers
681 views

“IOError: decoder zip not available” : Ubuntu Python PIL

I am trying to get the sample heatmap.py running from: http://jjguy.com/heatmap/ #image.py import heatmap import random if __name__ == "__main__": pts = [] for x in range(400): ...
0
votes
0answers
22 views

How to render a slice of nifti-1 format by opengl in java or java swing?

I'm going to render nifti-1 format in java swing or by opengl in Java. Now, I know how to read and fetch the slices of the image with this format and I know each slice can be rendered because some ...
0
votes
1answer
149 views

Getting BitmapImage PixelHeight Property causes Initialization Issues

I have a BitmapImage that I want to get the PixelHeight and PixelWidth properties so I can determine whether it has a landscape or portrait layout. After I determine its layout, I need to set either ...
0
votes
1answer
120 views

ImageJ - Drawing arrows linking Centroids of Two Images using a Plugin

So I'm doing a small project for my job where I'm required to take two images, one of nucleuses and one of golgi bodies and link them up by arrows with the two centroids as the endpoints. I've been ...
0
votes
1answer
127 views

PNG size growth when using RenderTargetBitmap and PngBitmapEncoder

I'm using a method to merge some tile images into a single image. But if I apply it to four 30kb- PNG images, the resulting PNG image would be 500K (~4x more than what I expect) This is some part of ...
1
vote
1answer
358 views

Merge png images into single image in WPF

I'm looking for a way to Merge some PNG tile images into a big image. So I search and found some links. This is not answered properly. This is not tiling, it's good for overlaying images and this is ...
-1
votes
1answer
15 views

We have many images that need to be processed on the server side of things, but we don't know where to start for this [closed]

I found a question that closely relates to an issue that we have been having with our website. A gentleman was asking how he could crop images so that the white space would be removed, and then all ...
0
votes
0answers
23 views

Did I get the explanation for stride right?

My explanation for the stride of an image would be as follows: The stride is the number of bytes used to store one row of an image. It may be just the number of bytes needed for all pixels of one ...
3
votes
3answers
223 views

Image comparison algorithm that ignores brightness

I am looking for an algorithm that I can use to compare two images and determine if there is something significantly different between the two. By "significant", I mean, if you took two photos of a ...
0
votes
2answers
214 views

Detect & floodfill ROI using OpenCV

i have a document image (b/w, 300dpi) containing newspaper like formated text (title, paragraph columns etc). - How can i detect paragraphs columns to floodfill them with Black Color? - How can i get ...
1
vote
0answers
30 views

Add a system Icon in Datagrid

I have to add a system icon in a Datagrid column,The data grid is not free its with data generated from a datasource. system icon can not be binded it should be added in the codebehind.
1
vote
1answer
81 views

Windows 8 custom imagining for multiple clients -help please?

If anyone can help us I would be very grateful! Every week we have multiple pc's to distribute to new clients. The machines have to be heavily customised with quite a few specifics: Removal of most ...
0
votes
0answers
46 views

Binarize image in Windows phone

I am trying to make an app that binarizes an image. More specifically, I created an image control and a slider control with a 0-255 Value range. The slider value represents the threshold. When the ...
0
votes
1answer
287 views

Image.FromStream() issue C# at the time of image manipulation

I'm working with JPG image type and this line image = Image.FromStream(ms); is giving an error Parameter is not valid. What is wrong with this code? private void button3_Click(object sender, ...
1
vote
1answer
121 views

jpeg lossless transformations - memory consumption?

i have just downloaded the latest win32 jpegtran.exe from http://jpegclub.org/jpegtran/ and observed the following: i have prepared a 24 BPP jpeg test image with 14500 x 10000 pixels. compressed ...
3
votes
1answer
288 views

Python (PIL): Lighten transparent image and paste to another one

I have two png-images (A & B) of the same size, the second (B) one is partially transparent. If I paste image B into image A using the code base.paste(overlay, mask=overlay) I get a nearly ...
0
votes
1answer
177 views

Write an ICO file to disk having the icon's handle

Let's just say that is have a handle to an icon image in C#. Is there a way, to save the contents as a valid ICO file on disk? I have tried everything but no luck. The first solution i thought was to ...
1
vote
1answer
104 views

Extract and save a slice from a volume with numpy

I'm trying to extract a slice from a volume using numpy. The volume is 512x512x132 and I want the slice number 66. Each voxel is an unsigned 16-bit integer. My code is: import numpy original = ...
1
vote
1answer
452 views

Is there a way to resize an image using GPU?

Is there a way to resize an image using GPU (graphic card) that is consumable through a .NET application? I am looking for an extreamly performant way to resize images and have heard that the GPU ...
0
votes
2answers
189 views

Direct access to a single pixel using Python

Is there any way with Python to directly get (only get, no modify) a single pixel (to get its RGB color) from an image (compressed format if possible) without having to load it in RAM nor processing ...
0
votes
1answer
156 views

Line detection using PIL

Given an image consisting of black lines (a few pixels wide) on white background, what is a good way to find the coordinates along the the lines, say for every 10th pixel or so? I am considering using ...
0
votes
0answers
130 views

Autoscroll not working when ImageBox controls are added to a custom control dynamically

I am working on a user control where image boxes (thumbnails of documents) are added dynamically across a panel from left to right. When the amount of images exceeds the width of the panel I need ...
1
vote
2answers
220 views

Resize drawn rectangle to fit original image

I'm developing an application to manipulate images scanned on a wide-image scanner. These images are shown as a ImageBrush on a Canvas. On this Canvas they can a make Rectangle with the mouse, to ...
5
votes
3answers
232 views

Detecting blank images (the image expected is a barcode) in c#

I am basically processing bar codes with an open source software. But the tool sometimes fails detecting no bar code at all. So I want to myself check wether the image was really blank or it contains ...
0
votes
0answers
130 views

c/c++ embedding python error “ImportError: The _imaging C module is not installed” [closed]

c/c++ embedding python error "ImportError: The _imaging C module is not installed". The python module can run correct without embeded in c/c++, under windows XP.
1
vote
1answer
78 views

Need to utilize OpenNETCF v2.x Imaging in application that has assemblies built on OpenNETCF v1.4

I have an existing WM application that I need to capture photos with and it looks like the Imaging class in OpenNETCF v2.x is the best bet because I am running into the "Out of memory" exception when ...
0
votes
0answers
29 views

Need advice on complete external hdd image and restoring software [closed]

I have installed Linux on an external hard disk and need to take an image backup, so, that I can restore it in case the hard drive fails. Is any software available to do that?
0
votes
2answers
447 views

Convert 24bit image to 8bit in monotouch?

We have an image processing windows application where we are using lead tools for converting and images from 24/48 bit images to 8 bit images. As an experiment I'm porting the application to iPad ...
1
vote
1answer
203 views

How to render a IWICBitmap on screen of XAML UI and code behind in C++?

I am writing a Metro style app for Windows 8 in C++. In that, I am creating a IWICBitmap instance from an image file in my code. I will process the pixels myself on this IWICBitmap. Now how do I ...
1
vote
1answer
926 views

How to create WritebleBitmap from a resource image with C++ for Windows Metro app?

I can easily create a BitmapImage from a resource JPG image file using the following code... Windows::Foundation::Uri^ uri = ref new Windows::Foundation::Uri(L"ms-appx:///Hippo.JPG"); ...
0
votes
0answers
72 views

Using PIL to read a bayer8 formated image string under python

I have image data from an Allied Camera. It is in bayer8 format as a string, and I want to read it into an image object under PIL using the line: im = Image.fromstring('L',(1360,1024),data) but i ...
0
votes
1answer
142 views

How Can I Remove Pixel Noise from ofxKinect Video?

I'm looking for some help figuring out how to remove some low quality pixel noise from a video, that I'm obtaining from an xbox kinect via open frameworks. I'm running logic against "moving" parts of ...
4
votes
1answer
162 views

Drawing multilingual text using PIL

I'm having trouble drawing multilingual text using PIL. Let's say I want to draw text - "ひらがな - Hiragana, 히라가나". But PIL's ImageDraw.text() function takes only one font at a time, so I cannot draw ...
1
vote
2answers
733 views

Tool for lossless image compression

Running Google Page Speed on a public site , I saw some suggestions by the tool like the following : Losslessly compressing ...
3
votes
3answers
448 views

How to draw unicode characters on transparent image in PIL

I am trying to draw certain unicode characters on and image using python (PIL to be precise). Using the following code I can generate the images with a white background: ('entity_code' is passed in ...
0
votes
0answers
275 views

How to use managed Imaging API example?

I am trying to implement the WIMGAPI API into a c# program. I have put this class into my program already. I just pretty much copied and pasted the whole class on that link into a C# Class file. This ...
2
votes
1answer
356 views

Convert Black and White bitmap to boolean array [duplicate]

Possible Duplicate: Fast way to convert a Bitmap into a Boolean array in C#? in my project I have a resource that is a black and white bitmap which I'm using to hold some 4x4 black and ...

1 2 3 4