hy guys! I'm new in Augumented reality I'm developing app In flutter like this https://play.google.com/store/apps/details?id=com.rounz.showcase I don't how to create app like this can someone help me please. please watch this link an guide me
hy guys! I'm new in Augumented reality I'm developing app In flutter like this https://play.google.com/store/apps/details?id=com.rounz.showcase I don't how to create app like this can someone help me please. please watch this link an guide me
If you want to develop a mobile app, you can use the capabilities of facial recognition, graphics rendering, and AR display provided by Huawei AR Engine to access Product AR fitting.
AR Engine is a platform for building AR apps on Android smartphones. It integrates AR core algorithms to provide basic AR capabilities such as motion tracking, environment tracking, body tracking, and face tracking.
Huawei provides Flutter plug-ins for you to integrate AR Engine. You can download it on Github: https://github.com/HMS-Core/hms-flutter-plugin/tree/master/flutter-hms-ar
The main procedures are as follows:
mSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
mFaceView.clearResource();
if (isChecked) {
// Load materials.
int index = mFaceView.loadAsset("FaceView/sunglasses.glb", LandmarkType.TIP_OF_NOSE);
}
}
});
For more details, see docs.