xxxxxxxxxx
31
<html>
<head>
<meta charset="UTF-8">
<title>Webcam Image Classification using a pre-trained customized model and p5.js</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js" type="text/javascript"></script>
<style>
/* Define the fade-in animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Apply the animation to the text element */
.fade-in-text {
opacity: 0; /* Ensure the text is hidden initially */
animation: fadeIn 2s forwards; /* 2s duration, forwards to keep the final state */
}
</style>
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>