This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2.cv as cv | |
from datetime import datetime | |
import time | |
import pyaudio | |
import wave | |
class MotionDetectorAdaptative(): | |
def onChange(self, val): #callback when the user change the detection threshold | |
self.threshold = val | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'raudio' | |
require 'OpenCV' | |
class MotionDetector | |
def onChange(self, val) #Зворотній виклик коли користувач змінює поріг чутливості. | |
self.threshold = val | |
end | |
def self.initialize(threshold = 25, doRecord = true, showWindows = true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Update user video settings | |
POST /user_settings/video_settings | |
body: { | |
enableDisclaimer: boolean, | |
enableWatermark: boolean | |
} | |
*/ | |
updateVideoSettings: function (req, res) { | |
const updateObj = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Build folders tree. | |
// Example how should result looks like | |
// folderTree = { | |
// folders: [{ | |
// folders: [{ | |
// id, | |
// name, | |
// folders: [] | |
// }] | |
// }] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Build folders tree. | |
// Example how should result looks like | |
// folderTree = { | |
// folders: [{ | |
// folders: [{ | |
// id, | |
// name, | |
// folders: [] | |
// }] | |
// }] |