我正在做一个关于创建HDR图像的教程,当我调用 public void notifySuccess(String requestType,JSONObject response);
public void notifyError(String requestType,VolleyError error);
AsyncTask.execute(new Runnable() {
@Override
public void run() {
if (loginSessionManager.isLogin()){
cServerRequest = new CServerRequest(mResultcallBack,mContext);
JSONObject jsonObject = null;
try {
jsonObject = new JSONObject();
jsonObject.put(CRequestKey.AGENT_CODE, m_szMobileNumber.trim());// sending mobile no.(static right know becuse of ser side data on other is null
jsonObject.put(CRequestKey.PIN, m_szEncryptedPassword.trim());// same here as said above
Log.e(TAG,"Request::"+jsonObject.toString());
} catch (JSONException e) {
e.printStackTrace();
}
final String s_szWalletURL = CAPIStorage.IREWARDS_URL + CAPIStorage.WALLET_BALANCE_URL;
cServerRequest.postWalletRequest("POST",s_szWalletURL,jsonObject);
}else {
Log.e(TAG,"Not loggedin");
}
}
});
或calDebevec
的过程函数时,我一直得到这个例外:
我尝试使用以下库版本:2.4.13.2,3.1和3.2但没有成功。
代码:
mergeDebevec
教程的链接:http://docs.opencv.org/3.0-rc1/d3/db7/tutorial_hdr_imaging.html
答案 0 :(得分:0)
您有一个整数除法:1 / 45
是0.0f
。请注意,教程通过提供float
作为分隔符来设法躲避子弹。
答案 1 :(得分:0)
我通过使用debug dll而不是发布版本解决了这个问题。