Today I'm gonna give a try of how to build a virtual machine on AWS in order to integrate my LINEBOT applications

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

https://devcenter.heroku.com/articles/getting-started-with-python#set-up

me1237guy 發表在 痞客邦 留言(0) 人氣()

google "MySQL community"

me1237guy 發表在 痞客邦 留言(0) 人氣()

nuGet管理套件安裝

me1237guy 發表在 痞客邦 留言(1) 人氣()

> git status

me1237guy 發表在 痞客邦 留言(0) 人氣()

me1237guy 發表在 痞客邦 留言(0) 人氣()

What is ONNX - Open Neural Network Exchange

onnx-converter

me1237guy 發表在 痞客邦 留言(0) 人氣()

You have to install Spyder before Pytorch installation.

me1237guy 發表在 痞客邦 留言(0) 人氣()

me1237guy 發表在 痞客邦 留言(0) 人氣()

A good introduction to those who want to understand the differences between MIT, GPL, LGPL licenses.

me1237guy 發表在 痞客邦 留言(0) 人氣()

Here is a collection of related Convolutional Neural Networks tutorials that involve object detection and localization.

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

cuda_10.1.105_418.96_win10

me1237guy 發表在 痞客邦 留言(0) 人氣()

import keras
from keras import layers
from keras import models
 
print('keras version: {}'.format(keras.__version__))
model = models.Sequential()
model.add(layers.Conv2D(32, (3, 3), activation='relu', input_shape=(28, 28, 1)))
model.summary()

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

文章標籤

me1237guy 發表在 痞客邦 留言(0) 人氣()

國語辭典

me1237guy 發表在 痞客邦 留言(0) 人氣()

How Do Convolutional Layers Work in Deep Learning Neural Networks?

A Gentle Introduction to Pooling Layers for Convolutional Neural Networks

 

文章標籤

me1237guy 發表在 痞客邦 留言(0) 人氣()

  1. QLibrary - import a class
  2. 透過QLibrary載入動態函式庫並利用Qt Plugin設計軟體插件
  3. How to export C++ class from dll
  4. C++ Qt 98 - How to use a DLL
  5. c語言怎麼呼叫dll檔案

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

歷屆臺灣區初賽試題

 

文章標籤

me1237guy 發表在 痞客邦 留言(0) 人氣()

me1237guy 發表在 痞客邦 留言(0) 人氣()

me1237guy 發表在 痞客邦 留言(0) 人氣()

Windows 10 上適用於 Linux 的 Windows 子系統安裝指南

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

References:

me1237guy 發表在 痞客邦 留言(0) 人氣()

[Design Pattern] 代理模式 (Proxy Pattern)

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

C++ Qt 82 - Custom QGraphicsItem

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

In this web site, it provides a lot of benchmark for multiple object tracking.

me1237guy 發表在 痞客邦 留言(0) 人氣()

This time we are going to create a new Object intead of using subclass of QThread,

me1237guy 發表在 痞客邦 留言(0) 人氣()

A good example for writing QThread with a GUI.

me1237guy 發表在 痞客邦 留言(0) 人氣()

A good example that help you learn how to handle mouse events

me1237guy 發表在 痞客邦 留言(0) 人氣()

cv::Mat img(cv::Size(800, 800), CV_8UC3);
 
   // big region of interest (ROI)
   Rect roi(100, 100, 400, 400);
   rectangle(img, roi, Scalar(255, 0, 0), 1);
 
   // some rectangles
   vector<Rect> lpROIs;
   lpROIs.push_back(Rect(30, 50, 100, 100));
   lpROIs.push_back(Rect(420, 250, 100, 100));
   lpROIs.push_back(Rect(150, 140, 100, 100));
   lpROIs.push_back(Rect(300, 100, 100, 100));
   lpROIs.push_back(Rect(250, 250, 100, 100));
   lpROIs.push_back(Rect(300, 450, 100, 100));
 
   // check out if the rectangle inside the ROI
   for(int i=0; i<lpROIs.size(); i++)
   {
       // inside the ROI
       if( (roi&lpROIs[i])==lpROIs[i] )
           rectangle(img, lpROIs[i], Scalar(0,0,255), -1);
       else
           rectangle(img, lpROIs[i], Scalar(0,255,0), 1);
   }
 
   imshow("img", img);
   waitKey();

me1237guy 發表在 痞客邦 留言(0) 人氣()

A good example that shows image processing by using OpenCV with Qt IDE.

me1237guy 發表在 痞客邦 留言(0) 人氣()

First, set up OpenCV building environments

me1237guy 發表在 痞客邦 留言(0) 人氣()

First, set up OpenCV building environments

me1237guy 發表在 痞客邦 留言(0) 人氣()


me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

Unfortunately Qt creator in linux does not support BGR888 format, so we have to convert the image to RGB format by using cvtColor funtion before displaying it.

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

Downloading Git for Windows

me1237guy 發表在 痞客邦 留言(0) 人氣()


me1237guy 發表在 痞客邦 留言(0) 人氣()

Platform: Windows 10

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

download Qt 5.14.1

me1237guy 發表在 痞客邦 留言(0) 人氣()

If you are trying to run DNN in OpenCV and unfortunately get such an error message:

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()


me1237guy 發表在 痞客邦 留言(0) 人氣()

   1: static void Main(string[] args)
   2:  {
   3:      var v1 = f1();
   4:      var avg1 = v1 / 3;
   5:      Console.WriteLine($"{avg1.GetType().Name}, avg: {avg1}");
   6:  
   7:      var v2 = f2();
   8:      var avg2 = v2 / 3;
   9:      Console.WriteLine($"{avg2.GetType().Name}, avg: {avg2}");
  10:  
  11:      var v3 = f3();
  12:      var avg3 = v3 / 3;
  13:      Console.WriteLine($"{avg3.GetType().Name}, avg: {avg3}");
  14:  
  15:      var v4 = f4();
  16:      var avg4 = v4 / 3;
  17:      Console.WriteLine($"{avg4.GetType().Name}, avg: {avg4}");
  18:  
  19:      var v5 = f5();
  20:      var avg5 = v5 / 3;
  21:      Console.WriteLine($"{avg5.GetType().Name}, avg: {avg5}");
  22:      Console.ReadKey();
  23:  }
  24:  static double f1()
  25:  {
  26:      double x = 100;
  27:      return x;
  28:  }
  29:  static float f2()
  30:  {
  31:      float x = 100;
  32:      return x;
  33:  }
  34:  static decimal f3()
  35:  {
  36:      decimal x = 100;
  37:      return x;
  38:  }
  39:  static long f4()
  40:  {
  41:      long x = 100;
  42:      return x;
  43:  }
  44:  static Int32 f5()
  45:  {
  46:      Int32 x = 100;
  47:      return x;
  48:  }

me1237guy 發表在 痞客邦 留言(0) 人氣()

OpenCL Error: Unknown error waiting for idle on GeForce GTX 1080 Ti (Device

me1237guy 發表在 痞客邦 留言(0) 人氣()


me1237guy 發表在 痞客邦 留言(0) 人氣()

以下為PAPAYA電腦教室的投影片教學,有興趣的人可以去訂閱學習。

目前列出幾個還蠻厲害的特效功能,剩下等之後有機會再去研究,學完幾個招式就感覺功力大增。

me1237guy 發表在 痞客邦 留言(0) 人氣()

Labeled Faces in the Wild

me1237guy 發表在 痞客邦 留言(0) 人氣()

C# call a c++ method, which is called GetSourceImage(…)

me1237guy 發表在 痞客邦 留言(0) 人氣()

以下根據 DKTD-WinFormThreading 文章節錄重點


me1237guy 發表在 痞客邦 留言(0) 人氣()

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()