今天的视频时长约三十四分钟,内容为
1、基于图像识别的电子相册项目演示
2、电子相册项目的代码逻辑讲解
还是演示,对于喜欢实操的人来说有点难受,我认为应该像ECS进阶班那样天天都是实操这样才能加深印象。看这些视频真的是没营养,我认为能讲课的这些老师确实是技术大牛,但是上课效果并没有像培训机构或者学校的老师一样有计划的讲解,有标记出重点。对于有会的人来说确实是简单,对于不会或者基础弱的来说能起到的作用几乎微乎其微。(本言论仅对于2021年3月的达摩院特别版·趣味视觉AI训练营,往届和以后的训练营不适用本次发表的个人意见。)
项目源码下载:
https://github.com/aliyun?q=&type=&language=&sort=(往期源码点这里)
https://github.com/aliyun/alibabacloud-viapi-demo(本期源码)
需要自己体验的可以自行下载,因为今天的课程从课程名字可以看出是讲解和使用说明,但是想体验的可以自己下载代码体验。
首先登陆阿里云视觉智能开放平台
https://vision.aliyun.com/experience/detail?spm=a211p3.14020179.J_7524944390.57.162935cclxezev&tagName=facebody&children=RecognizeExpression
然后开通服务
JAVA的示例代码看着里
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.exceptions.ServerException;
import com.aliyuncs.profile.DefaultProfile;
import com.google.gson.Gson;
import java.util.*;
import com.aliyuncs.facebody.model.v20191230.*;
public class RecognizeExpression {
public static void main(String[] args) {
DefaultProfile profile = DefaultProfile.getProfile("cn-shanghai", "<accessKeyId>", "<accessSecret>");
IAcsClient client = new DefaultAcsClient(profile);
RecognizeExpressionRequest request = new RecognizeExpressionRequest();
request.setRegionId("cn-shanghai");
request.setImageURL("http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/facebody/RecognizeExpression/RecognizeExpression1.jpg");
try {
RecognizeExpressionResponse response = client.getAcsResponse(request);
System.out.println(new Gson().toJson(response));
} catch (ServerException e) {
e.printStackTrace();
} catch (ClientException e) {
System.out.println("ErrCode:" + e.getErrCode());
System.out.println("ErrMsg:" + e.getErrMsg());
System.out.println("RequestId:" + e.getRequestId());
}
}
}
注意:此示例代码需要开通阿里云的OSS,然后上传图片使用里面的URL
阿里云高校计划,陪伴两千多所高校在校生云上实践、云上成长。在这里你可以领用免费的cpu资源,还可以参加免费训练营,实践提高:https://developer.aliyun.com/adc/student/