Tagged Questions
2
votes
1answer
52 views
Write image as 32 bit per channel (128 bit per pixel) bitmap from .net
I generate HDR images at runtime which I need to save in perfect quality (I'm chaining those images through multiple filters so I want to keep maximum fidelity each time to avoid too much quality ...
0
votes
1answer
17 views
Compression BMP to TGA issue
I'm new in .net development, so, may be my question is simple.
I need to compress BMP to TGA and decompress TGA to BMP using C#.
How can I implement that?
0
votes
2answers
50 views
How to get coordinates of pixel after shape was rectified?
I'm using EmguCV wrapper for OpenCV and I'm rectifing this shape:
with help of this code:
public Image<Bgr,byte> Rectify()
{
try
{
Image<Bgr, byte> ...
0
votes
0answers
24 views
TiffIFilter Limitations
I've found that the TiffIFilter fails to OCR certain images. Upon visual inspection there doesn't seem to be anything special about them... There's no hint of a failure (an exception) it just returns ...
-2
votes
1answer
83 views
Detect head tilt in a image [closed]
I am suppose to detect if there is a head tilt in photos. These photos are identity card size photos or passport size photos. If a head tilt is detected, then I need to correct / rectify the tilt ...
0
votes
0answers
47 views
EmguCV: How to convert code working with pointers and step?
I'm trying to convert some code from an open source library written with OpenCV 1.0 to EmguCV C# in .NET.
Here is the problematic code:
float* ptr = rotatedEdges->data.fl;
int step = ...
0
votes
1answer
131 views
When I retrieve image from sql server 2008 r2 the image is black
I have write a program that on it i upload and download image to/from database SQL Server 2008 R2 .
I upload image using code below :
SqlParameter picparameter = new SqlParameter();
...
0
votes
0answers
36 views
How to apply gray level co occurence methodology to extract the texture characteristics in C#?
I am trying to use GLCM methodology to extract the texture characteristics of images, but i developing the application in C# . Is there any libraries available for that or how can i do this ?
1
vote
1answer
68 views
PixelFormat convertation trouble
this is my code:
BitmapData bmpData = bitmap.LockBits(new Rectangle(0, 0, bitmap.Width, bitmap.Height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);
UnmanagedImage img = new ...
1
vote
0answers
22 views
Library to open ZVI files
Does anyone know if there exists a .NET library to open ZVI files. I know that there exists a lot of ZVI reader but I couldn't find a ZVI reader or a library for C# or .NET. Every help would be ...
-3
votes
1answer
57 views
How to get name of the image [closed]
I am using Aforge.net samples and i wanted to get name of the images which are placed on resources. I am unable to do so as image.tag is givng an error.
Please help
1
vote
1answer
114 views
Is there any way to create multipage TIFF file with OJPEG (TIFFTAG_COMPRESSION = 6) compression using .NET?
I need to create multipage TIFF file with OJPEG(Old-style JPEG) compression from single page tiffs with the same compression scheme.
I understand that this type of compression is not widely used ...
-1
votes
1answer
375 views
Adjust brightness contrast and gamma of an image
What is an easy way to adjust brightness contrast and gamma of an Image in .NET
3
votes
1answer
158 views
Efficient way to replace specific color in Bitmap/Image
In my grayscale picture I need to find specific value and replace it with some color, e.g yellow. Here is the code which I have right now, but it's not as fast as I need. Is there any more efficient ...
0
votes
4answers
390 views
Picturebox not Centering on Form Resize
I am working on a C# windows form and I am having trouble re-centering the Picturebox image.
What I am looking to do is look at the resolution of the monitor and set the form to a full screen and ...
0
votes
1answer
177 views
AForge ExhaustiveTemplateMatching works extremely slow
I am trying to find coordinates of one image inside of another using AForge framework:
ExhaustiveTemplateMatching tm = new ExhaustiveTemplateMatching();
TemplateMatch[] matchings = ...
1
vote
1answer
133 views
export chart to image high quality
I am exporting a chart fx into image, but this image have a low quality.
Chart chart1 = new Chart();
.
.
.
chart1.Export(FileFormat.Bitmap, "C:/WcfSReport/WcfSReport/WcfSReport/image.bmp");
Does ...
0
votes
0answers
113 views
Visual/Image search using C# / SQL Server along with a smartphone
I am doing some research related to QRCode scanning, bar code scanning and came across something new like Visual search.
Regarding barcode (1D) and QRCode (2D) we will get information from it and we ...
0
votes
0answers
46 views
how to recognize a multi-blobs on a blob in the image segmentation
i'm working a project that a similar to the OCR in .net.it need segmentation a object[0-9,a-z] from the image before continuing to process.i wrote a some code to detecting text but it doesn't accurate ...
0
votes
1answer
41 views
Is there any .NET dll around that does GIMP, or some other image program job?
I would like to know if there is any dll that I could use to import into my C# project to handle images.
What I am expecting to do is:
Increase/Decrease brigth, exposure
Put two photos at the same ...
5
votes
2answers
204 views
Parallelizing the histogram function
I have implemented a normal and parallel verion of a simple function that calculates a histogram from a 32bppArgb bitmap. The normal version takes about 0.03 seconds on a 1920x1080 image while the ...
0
votes
2answers
411 views
Speed - Copy bitmap data into array or work with it directly?
I'm using a LockedBitmap class that simplifies working with bitmap data in C#. Currently it is copying the data into a local byte[] array which is then accessed by its class methods to get/set pixel ...
0
votes
2answers
111 views
.NET image resizer that allows aspect ratio and only one width or height
Hey all i am looking for some asp.net code that mimics this PHP class here
Php Imagick
I need the code to be able to do as it does here:
$image = new Imagick('image.jpg');
// If 0 is provided as a ...
3
votes
1answer
179 views
Which classes/namespace to use for image-processing in .NET?
I have prototyped a library with some image-processing algorithms in Python/Numpy/Scipy, and now I want to port the code to C# and WPF.
I have realized that, although the input files are images ...
2
votes
2answers
626 views
Converting 8-bit grayscale tiff image to 8-bit grayscale jpg in .Net 2.0
We have a system that provides images in 8-bit grayscale either tiff or jpg formats. However, the component we have to process the images expects image to be in 8-bit jpg format.
When I use .Net to ...
0
votes
3answers
172 views
Unable to create a scalable png image using C# in .NET
I am trying to create an image based on a string. The image needs to be raster (otherwise it will lose resolution if I need to zoom out). I am using the following code:
Bitmap bitmapimage = new ...
-3
votes
3answers
135 views
Error in converting jpg to gif using Image.Save
What i am trying to do is to convert an image into a byte array and then write that byte array into a file. here's the code
public static byte[] Convert(Image img)
{
using (MemoryStream ...
2
votes
3answers
413 views
Using .Net to deskew an image
I have been searching high and low for a reliable way to deskew an image in .Net, and am not having much luck.
At the minute I am using Aforge. This is a pain as I am working with WPF, so the images ...
1
vote
1answer
141 views
Why am I getting a runtime error when I try to convert from an ImageSource to a BitmapImage?
I am working of this answer, trying to convert an ImageSource to a BitmapImage. I have an Image control on a WPF canvas, the source of which is a bitmap, and I want to extract the source property of ...
1
vote
2answers
252 views
Image cropping losing quality MVC3 .Net C# Application
I'm having trouble cropping an image in an MVC3 C# application. I am cropping the image but its losing quality when rendered back in a view.
The image to be cropped is loaded from a database and is ...
3
votes
2answers
113 views
Identifying multiple (graphical) object's edges from points
I've got an application which is identifying motion in a webcam image. It produces something like the following...
Areas in black indicate motion. This is largely done on a per-pixel basis ...
1
vote
1answer
110 views
How to track motion between images in a stream
I've got a ConcurrentQueue which is being populated with a stream of images. For simplicity's sake, assume they're frames from a webcam.
What I'd ideally like to do is detect
if there's any motion ...
0
votes
0answers
131 views
Crop/Remove Unwanted Space at the edges of image
I have search a lot to remove the unwanted space but could not found. I only found links which can used to remove black and white background space. But my background images can be anything. So, If I ...
0
votes
3answers
77 views
Image format conversion is going abnormally slow
I am receiving an image from an external system in the form of a sequence of BGR values followed by an empty byte. The sequence looks sort of like...
[B,G,R,0,B,G,R,0,...,B,G,R,0] where each BGR0 is ...
1
vote
1answer
52 views
How to get a bitmap drawn in a handled control
I am working with a fingerprint sensor under C# .NET. It shows the captured fingerprint by handling a control, like this:
this.Sensor.SetDisplay((int)this.PictureBoxFingerprint.Handle);
I need to ...
8
votes
6answers
643 views
How to find rotation angle of image?
I'm feeding in a Bitmap image to my C# program to be able to perform OCR to identify the characters in the image. I can do this fairly well if the image is not rotated. One of the program ...
0
votes
1answer
194 views
Need to combine two uploaded images on the fly into one bigger image in Classic ASP & .Net mixed app
I have a Classic ASP application running on IIS 7.5 (Windows Server 2008r2).
What I need is actually pretty simple:
(1) Users upload an image.
(2) First thing is I want to dupe the image they ...
2
votes
0answers
314 views
Looking for high-level Instagram/Microsoft Word like image processing library [closed]
Currently, I am looking for a (commercial or free) .NET/C# image processing library for a WinForms project to apply customizable effects like Instagram or Microsoft Office Word does, e.g.:
I found ...
0
votes
1answer
120 views
Merge an array of Bitmaps into a single Bitmap
I'm trying to merge an array of Bitmaps into a single Bitmap. Given a Bitmap[,] array b like the following (assume these are images that look like characters):
b[0,0] = 1
b[1,0] = 2
b[0,1] = 3
b[1,1] ...
-3
votes
1answer
53 views
Should I use .NET or PHP for large image manipulation? [closed]
I am beginning a new project that will require the manipulation of large images (hundreds of Mbs).
Would PHP or .NET have the best libraries for handling this?
I am looking at using ImageMagick and ...
1
vote
1answer
113 views
Add extra white space to a scanned image using kofax image controls
What I'm After:
I'm trying to create an extra 1/4 inch of white space to be appended to the TOP of the image during the scanning process.
Using the Kofax Image Controls Toolkit is it possible within ...
0
votes
0answers
76 views
How can i get .net to recognise patterns in pdf/jpeg? [closed]
At work we have a process of drawing rectangles around certain parts of a pdf or jpeg file.
the pdf/jpeg is loaded into a flash player and then the developer draws an area around each icon-text ...
1
vote
2answers
72 views
Which 2D technology is used to encode more than 1kb of data?
I want to encode more than 1kb of data.But i tried using datamatrix .But in datamatrix we can't encode 1kb of data.Is there any other 2D technology are there to encode more than 1kb of data?
2
votes
1answer
292 views
Namespaces for image editing in .net 4.5 framework
I am aware of System.Drawing and System.Windows.Media
But I have read mentions of .net wrappers for DirectUI or DirectX and that there may be new namespaces for image editing in .net 4.5
Is this ...
0
votes
1answer
103 views
Using stream with fileupload manipulating the result somehow
Suddenly pictures that was showing before stopped showing on the page and checking the folder * discovered the image don't show when I click on them. Debugging my code I found the commented lines were ...
0
votes
1answer
93 views
Convert image to array of floats and back in .NET
I have code in Python that opens an image as grayscale, converts it to a numpy float array, perform a lot of mathematical operations on it, then normalizes and converts it to binary image (1 bit per ...
2
votes
1answer
68 views
System.Drawing.Image and colour spaces
If I create a bitmap with System.Drawing.Bitmap How can I specify what colour space the bitmap uses? Also how can I make sure the colour profile is embedded when I save the image as a jpeg or tiff?
2
votes
2answers
152 views
How to optimize multiple images from folder at once (decrease file size) manually in webapi?
Hi all i am working on webapi i need to optimize the images from folder here i Had Uploaded images into one folder before uploading in to the destination folder i need to decrease the image size ...
0
votes
2answers
105 views
Any idea how to get background color of the poster or broadsheet?
In my project Im using EMGU librery.
I need to determine the background color of the urban poster or broadsheet.
As I see the background color of the poster or broadsheet is the predominant color.
...
3
votes
1answer
317 views
Content-Aware Image Cropping with C#
I am working on a CMS like project which users can upload images with contents. I have to create thumbnails for the uploaded images on the fly. Lets say the thumbnail size as 125x75
I can resize ...
