Hi guys!
i have two forms..the first one is made in wpf the second one is a winForm.
Now i want to be able to press a button on second form(winform) using a radio button on first form(wpf).
I tried several staff including performclik(not supported by wpf).
Any idea how to solved it?
Thanks!
Ranjit PowarPosted Jan 27, 2016, 11:32 AM
+ resultDisplay[0].Score + "','" + resultDisplay[1].Score + "','" + resultDisplay[2].Score + "','" + resultDisplay[3].Score + "','" + resultDisplay[4].Score + "','" + resultDisplay[5].Score + "','" + resultDisplay[6].Score + "','" + resultDisplay[7].Score + "','" + resultDisplay[8].Score + "')";
Guest UserPosted Feb 3, 2016, 9:28 AM
Guest UserPosted Jan 27, 2016, 12:45 PM
Guest UserPosted Jan 27, 2016, 7:58 AM
Guest UserPosted Jan 27, 2016, 7:58 AM
Ranjit PowarPosted Jan 26, 2016, 12:01 PM
Ranjit PowarPosted Jan 26, 2016, 11:59 AM
Guest UserPosted Jan 26, 2016, 10:45 AM
So ..if you run the application will see that it show the 3 best expressions but , if i 'm right, there are 8 kinds of expressions
I'd like to store all of them..but if not possible the first one can be enought.. i hope to have been clear now...
resultDisplay[0] = new EmotionResultDisplay { EmotionString = "Anger", Score = emotion.Scores.Anger };
resultDisplay[1] = new EmotionResultDisplay { EmotionString = "Contempt", Score = emotion.Scores.Contempt };
resultDisplay[2] = new EmotionResultDisplay { EmotionString = "Disgust", Score = emotion.Scores.Disgust };
resultDisplay[3] = new EmotionResultDisplay { EmotionString = "Fear", Score = emotion.Scores.Fear };
resultDisplay[4] = new EmotionResultDisplay { EmotionString = "Happiness", Score = emotion.Scores.Happiness };
resultDisplay[5] = new EmotionResultDisplay { EmotionString = "Neutral", Score = emotion.Scores.Neutral };
resultDisplay[6] = new EmotionResultDisplay { EmotionString = "Sadness", Score = emotion.Scores.Sadness };
resultDisplay[7] = new EmotionResultDisplay { EmotionString = "Surprise", Score = emotion.Scores.Surprise };
Ranjit PowarPosted Jan 26, 2016, 9:28 AM
Guest UserPosted Jan 26, 2016, 8:01 AM
https://github.com/Microsoft/ProjectOxford-ClientSDK/tree/master/Emotion/Windows
All the results from 0 to 7...Guest UserPosted Jan 26, 2016, 8:01 AM
https://github.com/Microsoft/ProjectOxford-ClientSDK/tree/master/Emotion/Windows
All the results from 0 to 7...Ranjit PowarPosted Jan 26, 2016, 7:46 AM
Guest UserPosted Jan 26, 2016, 7:31 AM
Oh MAN you are so cool!!! I got a project called "Oxford emotion" by Microsoft.
LINK PROJECT YOU NEED BOTH TO WORK
TO INSERT SQLITE :
string Query = "insert into Emotions (Anger) values ('"+ ??array?? + "')";
ARRAY TO STORE:
Emotion emotion = emotionResult[i];
resultDisplay[0] = new EmotionResultDisplay{ EmotionString = "Anger", Score = emotion.Scores.Anger };
Ranjit PowarPosted Jan 26, 2016, 5:56 AM
Guest UserPosted Jan 26, 2016, 4:01 AM
Ranjit PowarPosted Jan 25, 2016, 9:58 PM
Guest UserPosted Jan 25, 2016, 1:32 PM
Ranjit PowarPosted Jan 25, 2016, 10:27 AM
Guest UserPosted Jan 25, 2016, 6:27 AM
Ranjit PowarPosted Jan 25, 2016, 5:50 AM
Guest UserPosted Jan 25, 2016, 5:45 AM
code?????
}
Form2(winform)---i need to call it by the radio button in the first form
public void bntCapture_Click(object sender, EventArgs e)
{
imgCapture.Image = imgVideo.Image;
}
Ranjit PowarPosted Jan 24, 2016, 8:01 AM