Caroline da Rosa

Results 2 comments of Caroline da Rosa

I have an identical problem! Using the function console.log('Classify - Result : ' + JSON.stringify(result)); , returns: ![image](https://user-images.githubusercontent.com/29668465/81891984-61f4b100-9580-11ea-94ca-f7450e513b05.png) Real data: ![image](https://user-images.githubusercontent.com/29668465/81892017-75a01780-9580-11ea-9dc7-cc7ead0f0603.png)

My code: ``` let video; let features; let knn; let labelP; let ready = false; let label = 'nothing'; function setup() { createCanvas(320, 240); video = createCapture(VIDEO); video.size(320, 240); video.hide();...