2014年8月25日 星期一

【怪物彈珠】近期活動與攻略

活動轉貼自
怪物彈珠Monster strike ‧降臨快報資訊
(非常推薦日版大家follow這個粉絲團)
如果我忘記更新這裡請點進上面的粉絲團!更新迅速又準確喔!!!

2014年8月23日 星期六

【Ingress】The Enlightened Wallpapers for HTC-m8

I've just made this wallpaper, it will suit htc-m8 or any htc-sence-phone with the same resoltion.
If you have a clock at the top row, it should look like this.
(sample)

2014年8月12日 星期二

【怪物彈珠】精準水平垂直移動技巧


這招很準,根本是外掛(其實是內掛?)

覺得自己已經很強的聖人請不要再往下看了

看完之後瞄準絕不失手,手殘例外XD

身為Android開發者的我竟然這麼晚發現,真是慚愧

1. 開發者選項裡面打開「指標位置」


2014年8月2日 星期六

[OpenCV] Mat.convertTo() method not working ? (8UC3 to 8UC1, etc)

** Note : issues mentioned in this article is based on OpenCV4Android (OpenCV in Java)
** might not suit all version of OPCV.

When you want to convert a 3-channel Mat to single channel, 
should use


Imgproc.cvtColor(Mat src, Mat dst, int code) ;

instead of 


Mat.convertTo(Mat m, int rtype);

Because the result of Mat.convertTo() will have the same CvType of input mat.

Example:
when trying to convert to single channel, using :

Imgproc.cvtColor(_inputMat, resultMat, Imgproc.COLOR_RGBA2GRAY);