Click here to Skip to main content
15,912,977 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to writ code for percentage in windows application form Pin
ashwini dharamsale29-Aug-13 23:09
ashwini dharamsale29-Aug-13 23:09 
GeneralRe: how to writ code for percentage in windows application form Pin
Simon_Whale29-Aug-13 23:17
Simon_Whale29-Aug-13 23:17 
GeneralRe: how to writ code for percentage in windows application form Pin
ashwini dharamsale29-Aug-13 23:20
ashwini dharamsale29-Aug-13 23:20 
GeneralRe: how to writ code for percentage in windows application form Pin
NotPolitcallyCorrect30-Aug-13 1:32
NotPolitcallyCorrect30-Aug-13 1:32 
GeneralRe: how to writ code for percentage in windows application form Pin
Forbiddenx30-Aug-13 2:57
Forbiddenx30-Aug-13 2:57 
GeneralRe: how to writ code for percentage in windows application form Pin
Keith Barrow30-Aug-13 1:40
professionalKeith Barrow30-Aug-13 1:40 
GeneralRe: how to writ code for percentage in windows application form Pin
harold aptroot29-Aug-13 23:27
harold aptroot29-Aug-13 23:27 
GeneralRe: how to writ code for percentage in windows application form Pin
Forbiddenx30-Aug-13 3:02
Forbiddenx30-Aug-13 3:02 
AnswerRe: how to writ code for percentage in windows application form Pin
OriginalGriff30-Aug-13 3:46
mveOriginalGriff30-Aug-13 3:46 
GeneralRe: how to writ code for percentage in windows application form Pin
Simon_Whale30-Aug-13 4:57
Simon_Whale30-Aug-13 4:57 
GeneralRe: how to writ code for percentage in windows application form Pin
OriginalGriff30-Aug-13 6:21
mveOriginalGriff30-Aug-13 6:21 
QuestionIn Windows Application how to create student marks memo Pin
ashwini dharamsale29-Aug-13 19:42
ashwini dharamsale29-Aug-13 19:42 
AnswerRe: In Windows Application how to create student marks memo Pin
Richard MacCutchan29-Aug-13 21:13
mveRichard MacCutchan29-Aug-13 21:13 
GeneralRe: In Windows Application how to create student marks memo Pin
ashwini dharamsale29-Aug-13 21:46
ashwini dharamsale29-Aug-13 21:46 
AnswerRe: In Windows Application how to create student marks memo Pin
Richard MacCutchan29-Aug-13 21:58
mveRichard MacCutchan29-Aug-13 21:58 
GeneralRe: In Windows Application how to create student marks memo Pin
Forbiddenx30-Aug-13 3:11
Forbiddenx30-Aug-13 3:11 
SuggestionRe: In Windows Application how to create student marks memo Pin
Richard MacCutchan30-Aug-13 3:25
mveRichard MacCutchan30-Aug-13 3:25 
GeneralRe: In Windows Application how to create student marks memo Pin
Forbiddenx30-Aug-13 3:44
Forbiddenx30-Aug-13 3:44 
GeneralRe: In Windows Application how to create student marks memo Pin
Richard MacCutchan30-Aug-13 5:06
mveRichard MacCutchan30-Aug-13 5:06 
AnswerRe: In Windows Application how to create student marks memo Pin
Abhinav S29-Aug-13 21:59
Abhinav S29-Aug-13 21:59 
AnswerRe: In Windows Application how to create student marks memo Pin
Dave Kreskowiak30-Aug-13 2:50
mveDave Kreskowiak30-Aug-13 2:50 
QuestionHand detection based on skin color using EmguCV Pin
Kh Ben29-Aug-13 7:01
professionalKh Ben29-Aug-13 7:01 
AnswerRe: Hand detection based on skin color using EmguCV Pin
OriginalGriff29-Aug-13 8:37
mveOriginalGriff29-Aug-13 8:37 
GeneralRe: Hand detection based on skin color using EmguCV Pin
Kh Ben29-Aug-13 9:09
professionalKh Ben29-Aug-13 9:09 
I think that's normal: helping others if we can, i don't ask to do my job.
I asked for suggestion, for real time application.

C#
private void DoMainLoop(Image<Bgr, Byte> frame)
        {
            try
            {
                Stopwatch watch = Stopwatch.StartNew();
                Image<Gray, Byte> img1 = frame.Convert<Gray, Byte>();

                /// Binary Image 
                if (traiter)
                {
                    img1 = img1.SmoothBlur(smooth, smooth);
                    img1 = img1.Dilate(dilate);
                    img1 = img1.Erode(erode);
                }

                imgBin = img1.ThresholdBinaryInv(new Gray(threshold), new Gray(255));

                
                handrectangle = HandsFromContours(imgBin);

                ......
                ......
                ......

            }
        }


what i want is a suggestion of a segmentation in real time in place of getting the hand from contour.
GeneralRe: Hand detection based on skin color using EmguCV Pin
OriginalGriff29-Aug-13 10:05
mveOriginalGriff29-Aug-13 10:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.