Rename disco/ to stm32f746_discovery/.

This commit is contained in:
Jens Elofsson 2020-02-27 12:39:14 +01:00
parent 59d8cd03dd
commit 8392598281
7 changed files with 9 additions and 9 deletions

View File

@ -4,16 +4,16 @@ $(eval $(call add_third_party_download,$(CIFAR10_DATASET_URL),$(CIFAR10_DATASET_
IMAGE_RECOGNITION_HDRS := \
tensorflow/lite/micro/examples/experimental/image_recognition/image_recognition_model.h \
tensorflow/lite/micro/examples/experimental/image_recognition/image_provider.h \
tensorflow/lite/micro/examples/experimental/image_recognition/disco/image_util.h \
tensorflow/lite/micro/examples/experimental/image_recognition/disco/display_util.h \
tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/image_util.h \
tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/display_util.h \
tensorflow/lite/micro/examples/experimental/image_recognition/util.h
IMAGE_RECOGNITION_SRCS := \
$(MAKEFILE_DIR)/downloads/image_recognition_model/image_recognition_model.cc \
tensorflow/lite/micro/examples/experimental/image_recognition/main.cc \
tensorflow/lite/micro/examples/experimental/image_recognition/disco/image_provider.cc \
tensorflow/lite/micro/examples/experimental/image_recognition/disco/image_util.cc \
tensorflow/lite/micro/examples/experimental/image_recognition/disco/display_util.cc
tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/image_provider.cc \
tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/image_util.cc \
tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/display_util.cc
IMAGE_RECOGNITION_TEST_SRCS := \
tensorflow/lite/micro/examples/experimental/image_recognition/image_recognition_test.cc \

View File

@ -21,8 +21,8 @@ limitations under the License.
#include "tensorflow/lite/schema/schema_generated.h"
#include "tensorflow/lite/version.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/disco/display_util.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/disco/image_util.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/display_util.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/image_util.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/image_provider.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/util.h"

View File

@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/micro/examples/experimental/image_recognition/disco/display_util.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/display_util.h"
#include "LCD_DISCO_F746NG/LCD_DISCO_F746NG.h"

View File

@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/micro/examples/experimental/image_recognition/disco/image_util.h"
#include "tensorflow/lite/micro/examples/experimental/image_recognition/stm32f746_discovery/image_util.h"
void ResizeConvertImage(tflite::ErrorReporter* error_reporter,
int in_frame_width, int in_frame_height,