Articles Comments

{ Berbagi, Menulis, Dan Mengajar } Ilmu… » 5. Frame Works

Ini Lho REST API CODE IGNITER

https://belajarphp.net/membuat-rest-api-codeigniter/ https://bayultimate.wordpress.com/2012/05/18/implementasi-web-service-pada-facebook-api/ Pengenalan SOA serta implementasinya pada aplikasi SS (Support System) from Dimas Prawira … Read entire article »

Filed under: 5. Frame Works, Code Igniter (CI)

Tutorial Laravel

http://digitalmapia.com/membuat-crud-sederhana-pada-laravel-part-1/ … Read entire article »

Filed under: laravel

Ini Installasi Laravel 5

1. Installasi Paket di Linux apt-get update & apt-get upgrade apt-get install nginx php5-fpm php5-cli php5-mcrypt php5-mysql git php5enmod mcrypt 2. Install Composer curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer 3. Buat Project Laravel cd /var/www/laravel composer create-project laravel/laravel project_name --prefer-dist 4. Chmod dan Chown chgrp -R www-data /var/www/laravel chmod -R 775 /var/www/laravel/storage   … Read entire article »

Filed under: laravel

Camera Calibration

http://opencv.willowgarage.com/documentation/camera_calibration_and_3d_reconstruction.html … Read entire article »

Filed under: OpenCV

Library Wajib OpenCV

cv210.lib cxcore210.lib highgui210.lib   … Read entire article »

Filed under: OpenCV

openCV Toturial

http://www.pages.drexel.edu/~nk752/tutorials.html … Read entire article »

Filed under: OpenCV

OpenCV Camera Calibration

http://dasl.mem.drexel.edu/~noahKuntz/openCVTut10.html … Read entire article »

Filed under: OpenCV

OpenCV 1

// halo.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "cv.h" #include "cxcore.h" #include "highgui.h" int _tmain(int argc, _TCHAR* argv[]) { IplImage *img = cvLoadImage ("Image.bmp"); cvNamedWindow("Image:",1); cvShowImage("Image:",img); cvWaitKey(); cvDestroyWindow("Image:"); cvReleaseImage(&img); return 0; } … Read entire article »

Filed under: OpenCV