Processing images/video stream in C# [closed] - c#

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
What is good book to read on about image processing in C#, and image processing overall.
Image will be taken from a camera and will be searched for certain objects, changes, etc.

If you're just wanting to to "basic" image manipulation functions, like color adjustments or things like that then you should probably just brush up on basic math and bit manipulation, you'd be surprised what you can accomplish with a few simple tricks (like in this post and this article).
However, if you're serious about image processing I would recommend Algorithms for Image Processing and Computer Vision, the source is in C, but that doesn't change the underlying concepts.

Related

How to mask the image in C# using ITextSharp.dll? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am newbie to C#.Can anybody provide me with some links or tutorials for the masking of the image using ITextSharp.dll?
Any help would be appreciated a lot.
Thanks
I'm discussing hard and soft image masks in chapter 10 of my book. You'll find some Java examples (and the corresponding PDFs) if you click links such as ImageMask (this example shows you how to create a hard mask as well as a soft mask). You'll find a C# port of the examples here: http://tinyurl.com/iiacsCH10

What GUI technology to use for C# game application? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I was wondering what is the best way to go on this one. My intention is to better learn C# by making a game and an appropriate GUI.
My game would have been something like ZooTycoon (http://www.gamespot.com/zoo-tycoon/)
but much more simple.
As I really don't intend to learn a new language (like DirectX) only to write GUI for this application I would prefer something simpler but handy. Does that even exist?
I would recommend looking at SlimDX or SharpDX.

Low-resource, targeted and full-screen captures, why C#? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I would like to be able to capture screenshots with C++ 'using a lot of compression', and/or more importantly 'uses very few system resources when capturing'. I have been looking for concise, well-written examples, and I think I have found a few. What I've found is that most of the examples are in C# and very few are in C++. I'm sure there's a somewhat simple/common answer, and it's foolish to ask. Why do people use C# instead of C++?
Why do people use C# instead of C++?
Because it's easier.
C++ gives you a lot of control over everything, and with that extra control comes extra responsibility and more work. If you just want to get something done quickly, using C# is usually sufficient.

Whats better in the job market, and what has a better future: Java or C#? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 12 years ago.
I've learned a lot of programming language, and I think that Java or C# are most likely the best for getting a job, but I was wondering if I am correct in thinking this, or are there other popular languages I should know about?
Looking at the trends, Java is slowly losing popularity whilst C# is increasing in popularity:
http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html
The Oracle buyout and subsequent astonishing mismanagement of Sun might have an impact on Java's future prospects, but there will always be Java jobs. You can still get jobs working on 30 year old COBOL projects; there's too much Java code around for it to disappear any time soon.

learning how to do basic image processing [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
what are the best tools for c# to do image processing? i am a beginner and want to learn the basics
Try getting started with this:
http://code.google.com/p/aforge/
(Source: Are there any OK image recognition libraries for .NET?)
Once you learn the basics, you can try writing your own.
Try Emgu CV, it is the wrapper of opencv in .net. And you can get more information about it from :
http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=opencv+c%23
Also check the Image Processing Lab sample in C#, which uses AForge.NET library.

Categories

Resources