所以我的代码工作完美只有一个hickup。我希望视频在第二台显示器上运行(目前已从代码中删除),而主显示器则全屏运行应用程序。问题是当opencv视频打开时,它最小化了主屏幕应用程序。我试过cv,名为Windows,并且没有运气调整大小。有什么建议吗?
当视频在辅助视频上运行时,只需要主监视器应用程序保持全屏。让我发疯了。
由于
<?php
class DBOperations{
// constructor
private $conn;
function __construct() {
//$this->connect(); // I have commented it out.
}
// destructor
function __destruct() {
// $this->close();
}
public function prepare_param(){
echo 'test';
}
}
$dbo = new DBOperations();
class DBhandler
{
function __construct()
{
}
function __destruct() {
// $this->close();
}
public function select_all_profile($dbo){
$output=$dbo->prepare_param();
}
}
$dbh = new DBhandler();
print_r($dbh->select_all_profile($dbo));exit; // This will print 'test'
?>