DSPRelated.com
Forums

Thresholding program required

Started by ramyog_kummar March 17, 2009
i am using ti c6416 DsP thru which i am doing Image processing that is captured online. can anyone provide me with a sample program how to do thresholding or suggest any site that helps in thresholding?

_____________________________________
Hi,
I don't know how you are going to use thresholding. If you just do some test, you can implement it in a few lines of code. If you want to use it in your product, it is very easy to optimize it and may you can also use the functions provided by TI. Please refer to the following manual:
TMS320C64x+ DSP Image/Video Processing Library Programmer’s Reference
(SPRUEB9)

Regards
Jogging

i am using ti c6416 DsP thru which i am doing Image processing that is captured online. can anyone provide me with a sample program how to do thresholding or suggest any site that helps in thresholding?
>
>_____________________________________

_____________________________________
Hi,

I am trying to profile an audio codec on C6713 DSK. Can somebody
help me on how to do this?
I tried to use profiler along with CCS, but it is really really slow and I
am not sure whether it is possible to use that or not.
Is there any timer functions which I can use in my code to get the clock
cycles?

Regards,
Arun

_____________________________________
Yes you can use the internal timer to profile your code

> To: c...
> From: a...@tataelxsi.co.in
> Date: Wed, 18 Mar 2009 19:56:41 +0530
> Subject: [c6x] Profiling on C6713 DSK
>
> Hi,
>
> I am trying to profile an audio codec on C6713 DSK. Can somebody
> help me on how to do this?
> I tried to use profiler along with CCS, but it is really really slow and I
> am not sure whether it is possible to use that or not.
> Is there any timer functions which I can use in my code to get the clock
> cycles?
>
> Regards,
> Arun

_____________________________________
Is there any inbuilt functions to use this timer? Or do I need to configure
it myself?

_____

From: christophe blouet [mailto:c...@hotmail.com]
Sent: Wednesday, March 18, 2009 11:04 PM
To: a...@tataelxsi.co.in; c...
Subject: RE: [c6x] Profiling on C6713 DSK
Yes you can use the internal timer to profile your code

> To: c...
> From: a...@tataelxsi.co.in
> Date: Wed, 18 Mar 2009 19:56:41 +0530
> Subject: [c6x] Profiling on C6713 DSK
>
> Hi,
>
> I am trying to profile an audio codec on C6713 DSK. Can somebody
> help me on how to do this?
> I tried to use profiler along with CCS, but it is really really slow and I
> am not sure whether it is possible to use that or not.
> Is there any timer functions which I can use in my code to get the clock
> cycles?
>
> Regards,
> Arun
>

_____________________________________
There are functions in CSL Library

Regards

> To: c...@hotmail.com; c...
> From: a...@tataelxsi.co.in
> Date: Thu, 19 Mar 2009 09:30:24 +0530
> Subject: RE: [c6x] Profiling on C6713 DSK
>
> Is there any inbuilt functions to use this timer? Or do I need to configure
> it myself?
>
> _____
>
> From: christophe blouet [mailto:c...@hotmail.com]
> Sent: Wednesday, March 18, 2009 11:04 PM
> To: a...@tataelxsi.co.in; c...
> Subject: RE: [c6x] Profiling on C6713 DSK
> Yes you can use the internal timer to profile your code
>
> > To: c...
> > From: a...@tataelxsi.co.in
> > Date: Wed, 18 Mar 2009 19:56:41 +0530
> > Subject: [c6x] Profiling on C6713 DSK
> >
> > Hi,
> >
> > I am trying to profile an audio codec on C6713 DSK. Can somebody
> > help me on how to do this?
> > I tried to use profiler along with CCS, but it is really really slow and I
> > am not sure whether it is possible to use that or not.
> > Is there any timer functions which I can use in my code to get the clock
> > cycles?
> >
> > Regards,
> > Arun
> >
>
>
> _____________________________________
Thanks a lot for your help...
I could use this timer functionality in my code.. :)

_____

From: c... [mailto:c...] On Behalf Of
a...@tataelxsi.co.in
Sent: Thursday, March 19, 2009 9:30 AM
To: 'christophe blouet'; c...
Subject: RE: [c6x] Profiling on C6713 DSK

Is there any inbuilt functions to use this timer? Or do I need to configure
it myself?

_____

From: christophe blouet [mailto:christophe_blouet@
hotmail.com]
Sent: Wednesday, March 18, 2009 11:04 PM
To: arunsankar@tataelxs i.co.in;
c6x@yahoogroups. com
Subject: RE: [c6x] Profiling on C6713 DSK

Yes you can use the internal timer to profile your code
> To: c6x@yahoogroups. com
> From: arunsankar@tataelxs i.co.in
> Date: Wed, 18 Mar 2009 19:56:41 +0530
> Subject: [c6x] Profiling on C6713 DSK
>
> Hi,
>
> I am trying to profile an audio codec on C6713 DSK. Can somebody
> help me on how to do this?
> I tried to use profiler along with CCS, but it is really really slow and I
> am not sure whether it is possible to use that or not.
> Is there any timer functions which I can use in my code to get the clock
> cycles?
>
> Regards,
> Arun
>

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments contained in it.
Hi all,

I am working with C6713 DSK. I have strange problem with malloc. I
have mapped the .sysmem into internal memory and the .rtstext to external
memory. But When I am moving the rtstext to external memory, the 'malloc'
call is failing and it always return NULL. Does anybody knows what is
happening here?

regards,
Arun Sankar M

_____________________________________
You don't mention how much space you attempt to allocate at runtime with the
malloc call, or how much space is allocated for the heap in the linker
stage. I would expect the problem is not enough space to satisfy your
runtime request.

On Sun, Mar 29, 2009 at 11:17 PM, wrote:

> Hi all,
>
> I am working with C6713 DSK. I have strange problem with malloc. I
> have mapped the .sysmem into internal memory and the .rtstext to external
> memory. But When I am moving the rtstext to external memory, the 'malloc'
> call is failing and it always return NULL. Does anybody knows what is
> happening here?
>
> regards,
> Arun Sankar M
>
>
>

_____________________________________
I am allocating enough heap and the program works fine if I am keeping the
rtstext inside internal memory. And more over I am trying to allocate only
256bytes of memory in the first malloc and I am keeping a heap size of
0x16000. So definitely it is not the problem with heap size, right?

_____

From: William C Bonner [mailto:w...@wimsworld.com]
Sent: Monday, March 30, 2009 8:44 PM
To: a...@tataelxsi.co.in
Cc: c...
Subject: Re: [c6x] Problem with malloc
You don't mention how much space you attempt to allocate at runtime with the
malloc call, or how much space is allocated for the heap in the linker
stage. I would expect the problem is not enough space to satisfy your
runtime request.
On Sun, Mar 29, 2009 at 11:17 PM, wrote:
Hi all,

I am working with C6713 DSK. I have strange problem with malloc. I
have mapped the .sysmem into internal memory and the .rtstext to external
memory. But When I am moving the rtstext to external memory, the 'malloc'
call is failing and it always return NULL. Does anybody knows what is
happening here?

regards,
Arun Sankar M