Direct flights from Manila via Air Asia, Cebu Pacific, and Philippine Airlines
Sample Itinerary
3 Days / 2 Nights
Day 1 (AM)
Arrive at Puerto Princesa International Airport (PPS)
Check-in to hotel
Day 1 (PM)
City Tour
Crocodile Farm
Butterfly Garden
Mitra's Ranch
Cathedral
Plaza Cuartel
City Museum
Iwahig Penal Colony
Day 2
Honda Bay, Island Hopping Tour
Luli Island
Pandan Island
Snake Island
Starfish Island
Day 3
Sabang/Underground River Tour
Day 4 (AM)
Dolphin Watching
Day 4 (PM)
Depart to next destination
Reviews on Activities, Hotels, and Restaurants
Honda Bay, Island Hopping Tour
One can do swimming, snorkeling, and fish feeding on the islands. Do not forget to bring a change of clothes, snorkeling gear, and underwater camera. I liked Pandan Beach the best because of its clear green color. The sand is smooth and powdery light brown in color. There are also cottages nearby and it's very relaxing because it's not overcrowded. There are also a lot of fish and be sure to check out the moon rose (a bluish green color fish). Your guide will tell you where to look and the names of the fish. Don't forget to give extra tip to your guide, which is usually your boatman. However, be cautious of the coral eggs that may hit your skin because it's very itchy and may sting for awhile. Overall, this is a must-do when you visit Puerto Princesa.
Kalui Restaurant
The service in this restaurant is great. It was fast and the waiters are quite attentive to your needs. The food was okay. I will recommend the butterfly fish with pineapple marinade and avocado shake. Maybe you can get the Ka Lui special platter, which is good for 2, but it's worth the price. The restaurant has a native ambiance and there are tables wherein you can get to sit on the floor with pillows. It was very ethnic, just suitable with the atmosphere plus they only play native songs.
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
Running DetectFaceDemo
Detected 0 faces
Writing faceDetection.png
libpng warning: Image width is zero in IHDR
libpng warning: Image height is zero in IHDR
libpng error: Invalid IHDR data
Solution:
Change the path of the files to their absolute paths.
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
Download the latest binary distribution of Apache Ant.
Extract the downloaded compressed file to a directory (e.g. C:\Users\mizuki\Documents\apache-ant-1.9.1).
Set the following environmental variables to their corresponding directories: JAVA_HOME (e.g. C:\Program Files\Java\jdk1.7.0_21\), ANT_HOME (e.g. C:\Users\mizuki\Documents\apache-ant-1.9.1\), and add %ANT_HOME%/bin to PATH.
Open the command prompt and from the ANT_HOME directory, run ant -f fetch.xml -Ddest=system to get the library dependencies of most Ant tasks. (I am not sure if this step is needed but I just did this based on the Apache Ant installation guide)
Extract the downloaded compressed file to a directory (e.g. C:\Users\mizuki\Documents\eclipse-SDK-4.2.2-win32\).
Creating a Simple Java Project
Start the Eclipse IDE and create a new workspace.
Create a new Java project.
Name the project "HelloCV".
Open Properties of the created project and click on Java Build Path to configure the needed OpenCV libraries.
Go to the directory where OpenCV was extracted and find the jar file under build > java.
Select the Native library location.
For its location path, the dll file will be under the folder x86 for 32-bit processor and x64 for 64-bit processor still under the build > java folder.
Create a new Java class Main.java with code shown in: OpenCV tutorial. However, use the string "opencv_java245" for the library.