我只想在检测到脸部时保存图像,即使脸部不存在,目前也可以保存。我只想在检测到面部时捕获,我使用android face API进行面部检测。
我的代码:这里我只想保存图像,如果有其他块的面孔,我需要放置我的代码。根据我的代码,如果我在else块中启动捕获会话,我无法访问readerListener,所以如何做到这一点。
var res = (from a in dc.orders
join b in dc.orderLines on a.orderId equals b.fk_orderId
join c in dc.foodItems on b.fk_foodId equals c.foodId
where a.fk_custId == cID
group new { a,c,b } by a into g
select new
{
OID1 = g.Key.orderId,
date1 = g.Key.date.Value.Date,
price1 = g.Sum(x => x.c.price * x.b.quantity) + g.Key.orderLines.Select(o => o.extraPrice).Sum()
});