
First, input the keyword "power" in the external module, and choose Power Mode
remember to enable powermode, then you can see the special effects when you start typing.
me1237guy 發表在 痞客邦 留言(0) 人氣(6)
Let's suppose that Region to be a mask of a gray-level image after the threshold process.
Here is an example of how to get all the rows and columns of the Region in Halcon.
get_region_points (Region, Rows, Columns)
tuple_sort_index (Columns, Indices)
me1237guy 發表在 痞客邦 留言(0) 人氣(27)
1. Camera calibration with square chessboard
2. Real Time pose estimation of a textured object
me1237guy 發表在 痞客邦 留言(0) 人氣(20)
me1237guy 發表在 痞客邦 留言(0) 人氣(3)
Create a new environment for the project in Anaconda
2. pip install fastapi
me1237guy 發表在 痞客邦 留言(0) 人氣(23)

cities = ["台南","雲林","高雄","屏東"]
for i in range(len(cities)):
print(str(i)+""+cities[i])
me1237guy 發表在 痞客邦 留言(0) 人氣(4)
1. Import OpenStreetMap Data into Driving Scenario
me1237guy 發表在 痞客邦 留言(0) 人氣(11)
1. In order to send mail from the GMail server, the first step is that you have to decrease the security level of your Gmail settings, enable it by clicking here
2. You can run the following snip code directly or save them as a script file and run it
me1237guy 發表在 痞客邦 留言(0) 人氣(15)
Add dependencies to build.gradle
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.cardview:cardview:1.0.0'
me1237guy 發表在 痞客邦 留言(0) 人氣(8)

Insert the latest version of firebase into the dependencies of the Gradle
dependencies
{
// ...
// Import the Firebase BoM
implementation platform('com.google.firebase:firebase-bom:29.0.3') // When using the BoM, you don't specify versions in Firebase library dependencies
// Declare the dependency for the Firebase SDK for Google Analytics
implementation 'com.google.firebase:firebase-analytics' // Declare the dependencies for any other desired
Firebase products
// For example, declare the dependencies for Firebase Authentication and Cloud Firestore
implementation
'com.google.firebase:firebase-auth'
implementation
'com.google.firebase:firebase-firestore'
}
me1237guy 發表在 痞客邦 留言(0) 人氣(7)