mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
merged
This commit is contained in:
commit
04248caf39
@ -208,9 +208,9 @@ namespace dlib
|
|||||||
auto ptr = data.host();
|
auto ptr = data.host();
|
||||||
for (auto i = ibegin; i != iend; ++i)
|
for (auto i = ibegin; i != iend; ++i)
|
||||||
{
|
{
|
||||||
for (long r = 0; r < NR; ++r)
|
for (size_t r = 0; r < NR; ++r)
|
||||||
{
|
{
|
||||||
for (long c = 0; c < NC; ++c)
|
for (size_t c = 0; c < NC; ++c)
|
||||||
{
|
{
|
||||||
rgb_pixel temp = (*i)(r,c);
|
rgb_pixel temp = (*i)(r,c);
|
||||||
auto p = ptr++;
|
auto p = ptr++;
|
||||||
|
@ -132,7 +132,7 @@ struct image_info
|
|||||||
{
|
{
|
||||||
string filename;
|
string filename;
|
||||||
string label;
|
string label;
|
||||||
unsigned long numeric_label;
|
long numeric_label;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::vector<image_info> get_imagenet_train_listing(
|
std::vector<image_info> get_imagenet_train_listing(
|
||||||
|
Loading…
Reference in New Issue
Block a user