小程序模板網(wǎng)

使用Java開發(fā)人臉融合(換軍裝等)并接入微信小程序

發(fā)布時間:2018-05-29 11:06 所屬欄目:小程序開發(fā)教程

先看一個演示圖片(圖片不是靜止哦只是慢)如何接入人臉融合功能到小程序創(chuàng)建一個AI應用https://ai.qq.com/cgi-bin/con...登錄騰訊AI,創(chuàng)建并勾選相關(guān)接口即可。記得復制APPID APPKEY使用Java接入該功能創(chuàng)建一個Spring ...

 
 
 

先看一個演示圖片(圖片不是靜止哦只是慢)

如何接入人臉融合功能到小程序

創(chuàng)建一個AI應用

https://ai.qq.com/cgi-bin/con... 登錄騰訊AI,創(chuàng)建并勾選相關(guān)接口即可。

記得復制APPID APPKEY
使用Java接入該功能

創(chuàng)建一個SpringMVC工程,包含上傳相關(guān)jar。或者SpringBoot工程也行。鄙人后端還在完善并沒有完全開源。具體可以參考https://gitee.com/xshuai/xai 項目

Java調(diào)用騰訊AI接口。小帥丶已經(jīng)封裝成SDK。也是開源的 https://gitee.com/xshuai/taip

如果使用maven搭建。直接pom引入即可哦

<!-- https://mvnrepository.com/artifact/cn.xsshome/taip -->
<dependency>
    <groupId>cn.xsshome</groupId>
    <artifactId>taip</artifactId>
    <version>4.2.1</version>
</dependency>

FaceMergeController(后端處理代碼)

import java.util.Iterator;
import org.apache.log4j.Logger;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import cn.xsshome.taip.ptu.TAipPtu;
/**
* 人臉融合接口
* url:http://www.xxx.com/facemerge/uploadFM
*/
@Controller
@RequestMapping(value="/facemerge")
@Scope("prototype")
public class FaceMergeController extends BaseController{
    private static final Logger logger = Logger.getLogger(FaceMergeController.class);
    /**
     * 人臉融合
     * @throws Exception
     */
    @RequestMapping(value="/uploadFM",method=RequestMethod.POST)
    public void UploadBDANIMAL()throws Exception{
        TAipPtu aipPtu = new TAipPtu("APPID", "APPKEY");
        String model = request.getParameter("model");
        logger.info("model的值是===="+model);
        String model = request.getParameter("model");
        logger.info("model的值是===="+model);
            String result = "";
            MultipartHttpServletRequest mpRequest = (MultipartHttpServletRequest)this.request;
            Iterator iter = mpRequest.getFileNames();
            MultipartFile file = null;
            while (iter.hasNext()) {
              file = mpRequest.getFile((String)iter.next());
              if ((file != null) && (file.getSize() != 0L)){
                byte[] image = file.getBytes();
                String apiPtuResult = aipPtu.faceMerge(image,Integer.parseInt(model));
                PrintUtil.printJson(this.response, apiPtuResult);
              } else {
                logger.error("請檢查上傳文件是否正確");
                result = "{\"result\", \"FAIL\",\"msg\":\"服務器開小差了\"}";
                PrintUtil.printJson(this.response, result);
              }
            }
        }
}

BaseController(基類)

import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.bind.annotation.ModelAttribute;
/**
 * 基類Controller 
 * 一些參數(shù)
 * Title: BaseController    
 * @author 小帥丶
 * @version 1.0
 */
public class BaseController {
    public Map session;
    public String openId;
    public String errMsg;
    public String jsonParam;
    public String callback;
    protected HttpServletRequest request;
    protected HttpServletResponse response;
    /**
     * 每次請求都會帶上
     * @param jsonParam
     * @param callback
     * @param openId
     */
    @ModelAttribute
    public void setReqAndRes(Map session, String openId, String errMsg,
            String jsonParam, String callback, HttpServletRequest request,
            HttpServletResponse response) {
        this.session = session;
        this.openId = openId;
        this.errMsg = errMsg;
        this.jsonParam = jsonParam;
        this.callback = callback;
        this.request = request;
        this.response = response;
    }
    public Map getSession() {
        return session;
    }
    public void setSession(Map session) {
        this.session = session;
    }
    public String getOpenId() {
        return openId;
    }
    public void setOpenId(String openId) {
        this.openId = openId;
    }
    public String getErrMsg() {
        return errMsg;
    }
    public void setErrMsg(String errMsg) {
        this.errMsg = errMsg;
    }
    public String getJsonParam() {
        return jsonParam;
    }
    public void setJsonParam(String jsonParam) {
        this.jsonParam = jsonParam;
    }
    public String getCallback() {
        return callback;
    }
    public void setCallback(String callback) {
        this.callback = callback;
    }
    public HttpServletRequest getRequest() {
        return request;
    }
    public void setRequest(HttpServletRequest request) {
        this.request = request;
    }
    public HttpServletResponse getResponse() {
        return response;
    }
    public void setResponse(HttpServletResponse response) {
        this.response = response;
    }
    
    public String getRealPath(String path) {
        return request.getSession().getServletContext().getRealPath(path);

    }
}

PrintUtil(響應類)

import java.io.IOException;
import java.io.PrintWriter;
import java.io.Writer;
import javax.servlet.http.HttpServletResponse;
/**
 * 輸出結(jié)果
 * @author 小帥丶
 *
 */
public class PrintUtil {
    public static void printXml(HttpServletResponse response,String result){
        try {
            response.setContentType("text/xml; charset=UTF-8");  
            PrintWriter sos = response.getWriter();
            sos.write(result);
            sos.flush();
            sos.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    
    /**
     * 采用json 或 jsonp
     * @param callback
     * @param response
     * @param result
     */
    public static void printJson(String callback,HttpServletResponse response,String result){
        boolean jsonP = false;
        if (callback != null) {
            jsonP = true;
            response.setContentType("text/javascript;charset=utf-8");
        } else {
            response.setContentType("application/x-json;charset=utf-8");
        }
        
            try {
                Writer out = response.getWriter();
                if (jsonP) {
                    out.write(callback + "(");
                }
                out.write(result.toString());
                if (jsonP) {
                    out.write(");");
                }
                out.flush();
                out.close();
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            
            
    }
    
    public static void printJson(HttpServletResponse response,String result){
        try {
            response.setCharacterEncoding("UTF-8");  
            response.setContentType("application/json; charset=utf-8");  
            PrintWriter sos = response.getWriter();
            sos.write(result);
            sos.flush();
            sos.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

微信小程序代碼實現(xiàn)

小帥一點資訊小程序代碼是開源的哦

學習并使用了微信小程序scroll-view組件

相關(guān)代碼請移步gitee查看 https://gitee.com/xshuai/weix...

微信小程序上傳限制為2048kb。相關(guān)圖片過多超了限制。因此需要用到云存儲。使用阿里云 騰訊云都可以哦。在親測的情況下發(fā)現(xiàn)。即使云儲存域名不在小程序里面添加也是可以正常訪問哦

圖片描述圖片描述圖片描述

以上就是接入的整體流程.



易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開源 碼云倉庫:starfork
本文地址:http://22321a.com/wxmini/doc/course/24466.html 復制鏈接 如需定制請聯(lián)系易優(yōu)客服咨詢:800182392 點擊咨詢
QQ在線咨詢