473,388 Members | 1,391 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

image processing program in C or C++

Hi, I am converting my matlab program into C/C++. I need to change some
image processing toolbox functions into C/C++, such as edge detection,
mathematical morphology.

Is there any place that I can download some open source program to
release my load?

Many Thanks

Dexin
Aug 31 '06 #1
10 4392
stonny wrote:
Hi, I am converting my matlab program into C/C++. I need to change some
image processing toolbox functions into C/C++, such as edge detection,
mathematical morphology.

Is there any place that I can download some open source program to
release my load?
See http://www.parashift.com/c++-faq-lit....html#faq-37.9
for some links to libraries.

Cheers! --M

Aug 31 '06 #2
stonny wrote:
Hi, I am converting my matlab program into C/C++.
Why?
I need to change some image processing toolbox functions into C/C++, such
as edge detection, mathematical morphology.
Probably not, but I would Google for [chaincode OCR open source]. That's
where such things are typically used. I think I got one of them working,
once.
Is there any place that I can download some open source program to release
my load?
When requesting a web search, always report your experiences with Google, so
we will know what you couldn't use.

--
Phlip
http://c2.com/cgi/wiki?ZeekLand <-- NOT a blog!!!
Aug 31 '06 #3

stonny wrote:
Hi, I am converting my matlab program into C/C++. I need to change some
image processing toolbox functions into C/C++, such as edge detection,
mathematical morphology.

Is there any place that I can download some open source program to
release my load?

Many Thanks

Dexin
Lti-Lib is a free library that has classes for both morphology and edge
detection (not sure how good). It can be found here:
http://ltilib.sourceforge.net/doc/homepage/index.shtml

Regards.

Sep 1 '06 #4
openCV, as far as I know, can do many well known image processing
tasks. e.g. CANNY for edge detection. However, I dont think you want to
rewrite nearly all the codes...... Can I ask why you want to abandond
MATLAB?

stonny wrote:
Hi, I am converting my matlab program into C/C++. I need to change some
image processing toolbox functions into C/C++, such as edge detection,
mathematical morphology.

Is there any place that I can download some open source program to
release my load?

Many Thanks

Dexin
Sep 1 '06 #5
RKS

sg*********@gmail.com wrote:
openCV, as far as I know, can do many well known image processing
tasks. e.g. CANNY for edge detection. However, I dont think you want to
rewrite nearly all the codes...... Can I ask why you want to abandond
MATLAB?
I think Intel IPL is also free download. Not sure if it is opensource.
You can try OpenGL too. It may be a overkill but I am sure it has most
of image processing algorithms.
Anyway in my opinion, new MATLAB alogorithms are way more efficient
than their previous versions. (Signal processing toolbox for example).
RKS

Sep 1 '06 #6
RKS wrote:
You can try OpenGL too. It may be a overkill but I am sure it has most
of image processing algorithms.
Input? OpenGL strikes me as a driver for rendered output...

--
Phlip
http://c2.com/cgi/wiki?ZeekLand <-- NOT a blog!!!
Sep 1 '06 #7
In article <4i***************@newssvr25.news.prodigy.net>,
ph******@yahoo.com says...
RKS wrote:
You can try OpenGL too. It may be a overkill but I am sure it has most
of image processing algorithms.

Input? OpenGL strikes me as a driver for rendered output...
OpenGL does provide some capabilities that can be used to implement
image processing. For example, some forms of edge detection are pretty
easy to implement.

One good point is that such an implementation tends to be quite fast
since it runs on dedicated graphics hardware (on a system that has it,
of course). The bad point is that unless you really need that speed or
are using OpenGL for other purposes, chances are this is going to be a
relatively difficult way to do the job. Along with coding the algorithm
itself, you have to learn all the OpenGL "stuff" that applies -- and
image processing is rarely (if ever) one of the first topics an OpenGL
book will cover either.

--
Later,
Jerry.

The universe is a figment of its own imagination.
Sep 1 '06 #8
Jerry Coffin wrote:
...image processing is rarely (if ever) one of the first topics an OpenGL
book will cover either.
Point: I never got past those first topics. ;-)

--
Phlip
http://c2.com/cgi/wiki?ZeekLand <-- NOT a blog!!!
Sep 1 '06 #9
Phlip wrote:
stonny wrote:
Hi, I am converting my matlab program into C/C++.

Why?
To make it marketable?
I need to change some image processing toolbox functions into C/C++, such
as edge detection, mathematical morphology.

Probably not, but I would Google for [chaincode OCR open source]. That's
where such things are typically used. I think I got one of them working,
once.
There are plenty of other places where such things are used besides
OCR.
Is there any place that I can download some open source program to release
my load?

When requesting a web search, always report your experiences with Google, so
we will know what you couldn't use.
Agreed.

Cheers! --M

Sep 1 '06 #10
sg*********@gmail.com wrote:
openCV, as far as I know
Please don't top-post. Your replies belong following or interspersed
with properly trimmed quotes. See the majority of other posts in the
newsgroup, or the group FAQ list:
<http://www.parashift.com/c++-faq-lite/how-to-post.html>


Brian
Sep 1 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Novice | last post by:
I'm afraid I will incur the wraith of Mr. Powell on this one - but I did read his #1 FAQ and some others and I still can't figure this out. I created this little c# app. and I have a PictureBox...
5
by: Jigar Mehta | last post by:
Hye Friends!!, Happy New Year!! I am Jigar Mehta from India. Currently I am working on a project in which I need to compress some images on the harddisk... I want to make an engine that reads...
7
by: needin4mation | last post by:
Hi, I have an Access 2002 - 2003 database. I am using Access 2003. Whenever I link an image all it shows is the filename. Not the image. Other versions of Access can link the image just fine. ...
1
by: stonny | last post by:
Hi, I am converting my matlab program into C. I need to change some image processing toolbox functions into C, such as edge detection, mathematical morphology. Since I am not very comfortable with...
10
by: Enrique Cruiz | last post by:
Hello all, I am currently implementing a fairly simple algorithm. It scans a grayscale image, and computes a pixel's new value as a function of its original value. Two passes are made, first...
15
by: Michael A. Covington | last post by:
Any thoughts about how to implement image processing algorithms to run fast in C#? Using GetPixel to access every pixel from a Bitmap seems to be rather time-consuming.
5
by: whisk3rs | last post by:
Hello, I have a conceptual question. I need to write a program that will take as input a list of images and then process each image individually (extract useful features from the image) ...
0
by: tavares | last post by:
(Our apologies for cross-posting. We appreciate if you kindly distribute this information by your co- workers and colleagues.) ...
0
Debadatta Mishra
by: Debadatta Mishra | last post by:
Introduction In this article I will provide you an approach to manipulate an image file. This article gives you an insight into some tricks in java so that you can conceal sensitive information...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.